All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.telicent.jena.graphql.schemas.traversal.graphqls Maven / Gradle / Ivy

Go to download

Provides a Core API for accessing Jena backed data from GraphQL utilising the java-graphql library

There is a newer version: 0.9.1
Show newest version
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