PageQL Table functionality in the form of a Svelte Store
Get started by installing to an existing Svelte project
npm install --save @pageql/pageql-store-table
Make sure you have a GraphQL client like Apollo installed
Setup your pageql.config.js
in your project's root
...
import ApolloClient from 'apollo-boost';
const client = new ApolloClient({ uri: 'your-graphql-url.com' });
export default {
...,
client,
}