Why isn't my ACF field showing up in the WPGraphQL schema? #39
Answered
by
Kevinchamplin
Kevinchamplin
asked this question in
Q&A
-
|
Why isn't my ACF field showing up in the WPGraphQL schema? |
Beta Was this translation helpful? Give feedback.
Answered by
Kevinchamplin
Jun 13, 2026
Replies: 1 comment
-
|
WPGraphQL only exposes ACF fields that are explicitly opted in. Each field (and its field group) needs 'show_in_graphql' => true, plus a defined graphql_field_name. If you register field groups programmatically, set it there; if a field is missing from the schema, that flag is almost always why. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Kevinchamplin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WPGraphQL only exposes ACF fields that are explicitly opted in. Each field (and its field group) needs 'show_in_graphql' => true, plus a defined graphql_field_name. If you register field groups programmatically, set it there; if a field is missing from the schema, that flag is almost always why.