Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ACF fields cannot be queried in previews #154

Closed
2 of 3 tasks
andremendonca03 opened this issue Jan 16, 2024 · 2 comments · Fixed by #156
Closed
2 of 3 tasks

ACF fields cannot be queried in previews #154

andremendonca03 opened this issue Jan 16, 2024 · 2 comments · Fixed by #156
Assignees
Labels
status: actionable Ready for work to begin

Comments

@andremendonca03
Copy link

Description

It looks like ACF fields cannot be queried in previews (at least not the preview data).
My Goal: Be able to access ACF preview data from the API.

This is my query:

query MyQuery2 {
  post(id: 125, idType: DATABASE_ID, asPreview: true) {
    title
    skeleton {
      textField
      skeleton {
        ... on SkeletonSkeletonHeadingCopyLayout {
          title
        }
      }
    }
  }
}

The post's title gets the preview value correctly but both ACF fields are returned with their published values (not the preview).

I've also already tried many variations of this query using revisionOf, or with asPreview: false and accessing by {preview {...}}, or even querying using nodeByUri. Never works.

Screenshot 2024-01-05 at 8 52 22 am (1)

Steps to reproduce

  1. I am using WordPress 6.4.2 currently on a localhost from Local by Flywheel PHP version 8.2.8.
  2. Deactivated all plugins except: WPGraphQL, ACF Pro and WPGraphQL for ACF to avoid any possible plugin conflict.
  3. Installed the Twenty Twenty Four theme to avoid any possible theme conflict.
  4. The only modification to the original theme was to add a filter: add_filter('use_block_editor_for_post_type', '__return_false', 10); to remove gutenberg editor.
  5. Create a new Field Group active in GraphQL with one normal text field and one flexible content field with a text field inside.
  6. Added the Field Group to pages and posts.
  7. Created a new post, updated content and then clicked on "Preview changes" button.
  8. Used the query to view preview content but only the Post's title had a correct preview data. ACF field were still retrieving the published data.

PHP or JSON export of the ACF Field Group(s)

acf-export-2024-01-16.json

Additional context

No response

WPGraphQL Version

1.19.0

WPGraphQL For ACF Version

2.0.0 (download from WP plugin not github)

ACF (Advanced Custom Fields) Version. Free or Pro?

6.2.5 PRO

WordPress Version

6.4.2

PHP Version

8.2.8

Additional enviornment details

No response

Please confirm that you have searched existing issues in the repo.

  • Yes

Please confirm that you have disabled ALL plugins except for WPGraphQL, WPGraphQL For ACF, ACF, etc.

  • Yes
  • My issue is with compatibility with a specific WordPress plugin, and I have listed all my installed plugins (and version info) above.
@jasonbahl jasonbahl added the needs: reproduction This issue needs to be reproduced independently label Jan 17, 2024
@josephfusco
Copy link
Member

Hey @andremendonca03, thank you for creating this issue!

@jasonbahl and I were able to confirm this issue.

This code below didn't get properly migrated to this new version.

https://github.com/wp-graphql/wp-graphql-acf/blob/develop/src/class-config.php#L79-L118

Moving this over does require some refactoring of this logic, but we plan on addressing this as soon as we can.

@josephfusco josephfusco added status: actionable Ready for work to begin and removed needs: reproduction This issue needs to be reproduced independently labels Jan 17, 2024
@jasonbahl
Copy link
Contributor

@andremendonca03 if you have time to check out the changes in this PR and let us know if the changes work for you, that would be great.

Please take note of the limitation of using ACF Field Groups as meta boxes on Post's that also use the Block Editor, as there is a Gutenberg bug preventing meta from being saved properly, thus previewing meta on Block Enabled posts will not work as expected. This is not a WPGraphQL or WPGraphQL for ACF bug. See: WordPress/gutenberg#16006 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: actionable Ready for work to begin
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants