@omnigraph/odata
Version:
10 lines (9 loc) • 373 B
TypeScript
import { type GraphQLSchema } from 'graphql';
import { type ResolveTree } from 'graphql-parse-resolve-info';
interface PrepareSearchParamsOptions {
fragment: ResolveTree;
schema: GraphQLSchema;
expandNavProps: boolean;
}
export declare function prepareSearchParams({ fragment, schema, expandNavProps, }: PrepareSearchParamsOptions): URLSearchParams;
export {};