Package org.aksw.jenax.graphql.json.api
Interface GraphQlExecFactoryDocument
- All Known Subinterfaces:
GraphQlExecFactory,GraphQlExecFactoryDocumentWrapper,GraphQlExecFactoryWrapper
- All Known Implementing Classes:
GraphQlExecFactoryDocumentWrapperBase,GraphQlExecFactoryLazy,GraphQlExecFactoryOverRdf
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Core low-level interface for
Document-based factories of GraphQlExec instances.-
Method Summary
Modifier and TypeMethodDescriptionA typical graphql JSON request has the attributes{ "query": "...", "variables": { ... } "operationName": "..." }This method accounts for the parsed value of the 'query' field.
-
Method Details
-
create
GraphQlExec create(graphql.language.Document document, Map<String, graphql.language.Value<?>> assignments) A typical graphql JSON request has the attributes{ "query": "...", "variables": { ... } "operationName": "..." }This method accounts for the parsed value of the 'query' field.
-