apollo-runes
v1.0.2
Published
<img src="./docs/logo.svg" width="300" />
Downloads
19
Readme
Apollo runes
Quick Start
Get started with Apollo Runes in minutes:
pnpm add apollo-runes @apollo/client graphql rxjs
# or
npm i apollo-runes @apollo/client graphql rxjs
# or
yarn add apollo-runes @apollo/client graphql rxjsSame as here for React
Usage
import { Query } from 'apollo-runes';
import { gql} from '@apollo/client';
const GET_USERS = gql`
query GetUsers {
users {
id
name
email
}
}
`;
const { data, loading, error } = new Query(GET_USERS);