neoxygen / neo4j-neoclient

Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
MIT License
121 stars 138 forks source link

getConstraints method change and output improvement #16

Closed ikwattro closed 9 years ago

ikwattro commented 9 years ago

Currently this is the output of the getConstraints method :

Array
(
    [0] => Array
        (
            [property_keys] => Array
                (
                    [0] => neogen_id
                )

            [label] => Person
            [type] => UNIQUENESS
        )

    [1] => Array
        (
            [property_keys] => Array
                (
                    [0] => neogen_id
                )

            [label] => Channel
            [type] => UNIQUENESS
        )
)