wpengine / wp-graphql-content-blocks

Plugin that extends WPGraphQL to support querying (Gutenberg) Blocks as data

Home Page:https://faustjs.org/docs/gutenberg/wp-graphql-content-blocks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom block attributes not exposed

ivantomicic-crowdhouse opened this issue · comments

I might be missing something but only things I can export from custom block are className & lock. None of my attributes that I registerd in theme with registerBlockType are showing up.

Hey @ivantomicic-crowdhouse would you provide a short reproduction example please? Block attributes should work as expected using a standard block.json.

Yes, you are right, I was not declaring my blocks using block.json but just using registerBlockType react script, which made it work but was not exposed in gfraphql. Using block.json fixes my issue. Thank you!