# qQuery ## Not like jQuery. A GraphQL Fetcher & Cache for Svelte Kit ### UnderConstruction.gif More information in this space soon. API is very much in flux rn. ### Preview ## gFetch The graphql fetcher client. Initialize ``` export const g = new GFetch({ path: Environment.apiURL }) ``` Fetch ``` const seriesList = ({ variables}) => g.fetch({ queries: [{ query: SeriesListDoc, variables }], }) ``` Cache and Fetch ``` export async function getSeriesList(variables) { await gQuery('seriesList', { query: seriesList, variables }) } ``` Use ``` ```