@graphql-mesh/serve-runtime
Version:
4 lines (3 loc) • 801 B
text/typescript
import type { SelectionSetNode } from 'graphql';
export declare function checkIfDataSatisfiesSelectionSet(selectionSet: SelectionSetNode, data: any): any;
export declare const defaultQueryText = "\n # Welcome to GraphiQL\n # GraphiQL is an in-browser tool for writing, validating,\n # and testing GraphQL queries.\n #\n # Type queries into this side of the screen, and you will\n # see intelligent typeaheads aware of the current GraphQL\n # type schema and live syntax and validation errors\n # highlighted within the text.\n #\n # GraphQL queries typically start with a \"{\" character.\n # Lines that start with a # are ignored.\n #\n # An example GraphQL query might look like:\n #\n # {\n # field(arg: \"value\") {\n # subField\n # }\n # }\n #\n";