This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
graphql-lightning-talk/assets/js/queries/list_people.js
2018-04-08 14:30:36 +12:00

12 lines
148 B
JavaScript

import gql from "graphql-tag";
export default gql `
query {
people{
username,
name,
location,
avatarUrl
}
}
`;