You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The content attribute field is not being returned for the core/paragraph block.
The Gutenberg plugin 17.3 merged the PR #43204, which changed the type and source attribute values from string => rich-text and html => rich-text, respectively, for the core paragraph block. As a result, the wp-graphql-gutenberg plugin fails to identify/parse the content attribute from the paragraph block.
The content attribute type doesn't have a matching case for rich-texthere, and it was identified as string earlier. Also, the content attribute source doesn't have a matching case for rich-texthere, and it was identified as html earlier. The wp-graphql-gutenberg plugin should patch those to fix the issue.
As I mentioned, the change was made in the Gutenberg 17.3 release, which was shipped with the WordPress 6.5 release.
The text was updated successfully, but these errors were encountered:
The
content
attribute field is not being returned for thecore/paragraph
block.The Gutenberg plugin 17.3 merged the PR #43204, which changed the type and source attribute values from
string
=>rich-text
andhtml
=>rich-text
, respectively, for the core paragraph block. As a result, thewp-graphql-gutenberg
plugin fails to identify/parse the content attribute from the paragraph block.The
content
attribute type doesn't have a matching case forrich-text
here, and it was identified asstring
earlier. Also, thecontent
attribute source doesn't have a matching case forrich-text
here, and it was identified ashtml
earlier. Thewp-graphql-gutenberg
plugin should patch those to fix the issue.As I mentioned, the change was made in the Gutenberg 17.3 release, which was shipped with the WordPress 6.5 release.
The text was updated successfully, but these errors were encountered: