/** * #graphql_msg.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type QueryRequest = { /** gql query string */ query: string; /** put the variables here */ variables?: { [key: string]: any; } | undefined; }; export type PersistedQueryRequest = { /** id of a persisted operation */ id: string; /** put the variables here */ variables?: { [key: string]: any; } | undefined; /** the name of the persisted operation */ operationName: string; }; export type QueryResponse = { data?: { [key: string]: any; } | undefined; /** @deprecated */ errors: GraphQLError[]; /** @deprecated */ ok?: boolean | undefined; }; export type GraphQLError = { code: string; message: string; }; //# sourceMappingURL=graphql_msg.d.ts.map