Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created September 30, 2021 15:54
Show Gist options
  • Save hackintoshrao/b10f71b1c445a795bad562b14534e1ea to your computer and use it in GitHub Desktop.
Save hackintoshrao/b10f71b1c445a795bad562b14534e1ea to your computer and use it in GitHub Desktop.
import { gql, useQuery } from '@apollo/client';
const GET_BOOKS = gql`
query GetBooks {
books {
id
title
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment