Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/pages/en/developing/creating-a-subgraph.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -402,11 +402,11 @@ This more elaborate way of storing many-to-many relationships will result in les

#### Adding comments to the schema

As per GraphQL spec, comments can be added above schema entity attributes using double quotations `""`. This is illustrated in the example below:
As per GraphQL spec, comments can be added above schema entity attributes using the hash symble `#`. This is illustrated in the example below:

```graphql
type MyFirstEntity @entity {
"unique identifier and primary key of the entity"
# unique identifier and primary key of the entity
id: Bytes!
address: Bytes!
}
Expand Down