Package org.aksw.jenax.graphql.json.api
Interface GraphQlExecFactory
- All Superinterfaces:
GraphQlExecFactoryDocument,GraphQlExecFactoryString
- All Known Subinterfaces:
GraphQlExecFactoryWrapper
- All Known Implementing Classes:
GraphQlExecFactoryOverRdf
Public high-level interface.
Typically implemented as a wrapper over
GraphQlExecFactoryDocument.-
Method Summary
Modifier and TypeMethodDescriptiondefault GraphQlExecA typical graphql JSON request has the attributes{ "query": "...", "variables": { ... } "operationName": "..." }This method accounts for the parsed value of the 'query' field.default GraphQlExec
-
Method Details
-
newBuilder
GraphQlExecBuilder newBuilder() -
create
default GraphQlExec create(graphql.language.Document document, Map<String, graphql.language.Value<?>> assignments) Description copied from interface:GraphQlExecFactoryDocumentA typical graphql JSON request has the attributes{ "query": "...", "variables": { ... } "operationName": "..." }This method accounts for the parsed value of the 'query' field.- Specified by:
createin interfaceGraphQlExecFactoryDocument
-
create
default GraphQlExec create(String documentString, Map<String, graphql.language.Value<?>> assignments) - Specified by:
createin interfaceGraphQlExecFactoryString
-