I cannot find the data in graphql with this plugin, all I can get is the FB id.
This is my gatsby-config
{
resolve: `gatsby-source-facebook-graphql`,
options: {
// Facebook account or page ID
pageId: XXXXXX,
params: {
fields: [
'address',
'birthday',
'hometown',
],
},
// Access Token from facebook
accessToken: 'XXXXXX',
},
},
I know I've got the access token right because w/o it facebook disappears from the graphiql panel.
gatsby build
? developers.facebook.com/docs/graph-api/reference/user - ksav