Skip to content

Instantly share code, notes, and snippets.

@peggyrayzis
Created March 22, 2018 18:00
Show Gist options
  • Save peggyrayzis/e9fc5c6296ac83a1b9e86913c1fb515c to your computer and use it in GitHub Desktop.
Save peggyrayzis/e9fc5c6296ac83a1b9e86913c1fb515c to your computer and use it in GitHub Desktop.
RA 2.1 Query component
import React from "react";
import gql from "graphql-tag";
import { Query } from "react-apollo";
const GET_DOGS = gql`
{
dogs {
id
breed
}
}
`;
const Dogs = ({ onDogSelected }) => (
<Query query={GET_DOGS}>
{({ loading, error, data }) => {
if (loading) return "Loading...";
if (error) return `Error! ${error.message}`;
return (
<select name="dog" onChange={onDogSelected}>
{data.dogs.map(dog => (
<option key={dog.id} value={dog.breed}>
{dog.breed}
</option>
))}
</select>
);
}}
</Query>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment