io.telicent.jena.graphql.schemas.traversal.graphqls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-jena-core Show documentation
Show all versions of graphql-jena-core Show documentation
Provides a Core API for accessing Jena backed data from GraphQL utilising the java-graphql library
schema {
query: Traversal
}
type Traversal {
nodes(starts: [NodeFilter!]): [TraversalNode!]!
}
type TraversalNode {
node: Node
outgoing(predicate: [NodeFilter!], kinds: [NodeKind!]): [TraversalEdge!]
incoming(predicate: [NodeFilter!], kinds: [NodeKind!]): [TraversalEdge!]
}
type TraversalEdge {
edge: Node
direction: EdgeDirection
target: TraversalNode!
}
enum EdgeDirection {
OUT
IN
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy