GraphQL schema directives (where this information is encoded in the GraphQL schema) are not currently exposed via GraphQL introspection (see this issue) so I don't see a way to retrieve this information via the GraphQL API - you'd need to have access to the SDL to inspect the directive argument values.
Thanks for clarification. running apoc.meta.schema Cypher take some time for execution. so its not a good idea to execute from UI side
I try to create new property in schema but i also need to pass Cypher query to connect it.
count: Int @cypher(
statement: """
MATCH (n:Customer) RETURN count(*)
"""
)
is there any way i can create new property (direction) in Schema Type to pass static value IN or OUT (means it not need to go to neo4j database to fetch value , it can take from Schema )