Minor Changes
-
b133a1b: Added WP GraphQL as a required plugin.
-
b813352: Adds support for resolving and returning navigation items within the CoreNavigation innerBlocks for WPGraphQL Content Blocks.
{ posts { nodes { editorBlocks { ... on CoreNavigation { type name innerBlocks { type name } attributes { ref } } } } } }
{ "data": { "posts": { "nodes": [ { "editorBlocks": [ { "type": "CoreNavigation", "name": "core/navigation", "innerBlocks": [ { "type": "CorePageList", "name": "core/page-list" }, { "type": "CoreNavigationLink", "name": "core/navigation-link" } ], "attributes": { "ref": 31 } } ] }, { "editorBlocks": [{}] } ] } } }
Patch Changes
- dec27c3: feat: Added a
CoreGroup
block class to fix an issue with a missing attributecssClassName