Interface GraphQlExecFactory

All Superinterfaces:
GraphQlExecFactoryDocument, GraphQlExecFactoryString
All Known Subinterfaces:
GraphQlExecFactoryWrapper
All Known Implementing Classes:
GraphQlExecFactoryOverRdf

public interface GraphQlExecFactory extends GraphQlExecFactoryDocument, GraphQlExecFactoryString
Public high-level interface. Typically implemented as a wrapper over GraphQlExecFactoryDocument.
  • Method Summary

    Modifier and Type
    Method
    Description
    default 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.
    default GraphQlExec
    create(String documentString, Map<String,graphql.language.Value<?>> assignments)