import { graphqlSync } from "https://dotland.deno.dev/x/graphql_deno@v15.0.0/lib/index.d.ts";
The graphqlSync function also fulfills GraphQL operations by parsing, validating, and executing a GraphQL document along side a GraphQL schema. However, it guarantees to complete synchronously (or throw an error) assuming that all field resolvers are also synchronous.
Parameters
args: GraphQLArgs
Parameters
schema: GraphQLSchema
source: Source | string
optional
fieldResolver: Maybe<GraphQLFieldResolver<any, any>>optional
typeResolver: Maybe<GraphQLTypeResolver<any, any>>