0.0.6 • Published 1 month ago

@awardit/react-graphql-hooks v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
1 month ago

GraphQL Hooks for a simple client

Example

import { getDogs } from "./queries.graphql";

function Dogs(): JSX.Element {
  const data = useQuery(getDogs, { type: "GOOD" });

  return (
    <ul>
      {data.dogs?.map((dog) => (dog ? <li>{dog.name}</li> : undefined))}
    </ul>
  );
}
0.0.5

1 month ago

0.0.4

1 month ago

0.0.6

1 month ago

0.0.3

3 months ago

0.0.2

3 months ago

0.0.1

3 months ago