From 2d61e5c936c2bcb2aa62f4eb7c6f82b773b962ab Mon Sep 17 00:00:00 2001 From: luukvnes <34107188+luukvnes@users.noreply.github.com> Date: Wed, 3 Jun 2020 15:49:17 +0200 Subject: [PATCH] Fixed a edges -> an edges type in docs (#6028) Fixed a edges -> an edges type in docs (#6028) Co-authored-by: Hugh Willson --- docs/source/data/local-state.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/data/local-state.mdx b/docs/source/data/local-state.mdx index d5569d060c9..c3873f95349 100644 --- a/docs/source/data/local-state.mdx +++ b/docs/source/data/local-state.mdx @@ -621,7 +621,7 @@ const client = new ApolloClient({ }); ``` -[`CameraRoll.getPhotos()`](https://facebook.github.io/react-native/docs/cameraroll.html#getphotos) returns a `Promise` resolving to an object with a `edges` property, which is an array of camera node objects, and a `page_info` property, which is an object with pagination information. This is a great use case for GraphQL, since we can filter down the return value to only the data that our components consume. +[`CameraRoll.getPhotos()`](https://facebook.github.io/react-native/docs/cameraroll.html#getphotos) returns a `Promise` resolving to an object with an `edges` property, which is an array of camera node objects, and a `page_info` property, which is an object with pagination information. This is a great use case for GraphQL, since we can filter down the return value to only the data that our components consume. ```js import { gql } from "@apollo/client";