Skip to content

Commit

Permalink
fix: make metadata fields nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmardefago committed Sep 11, 2023
1 parent 340a5e1 commit 9192898
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ type GraphAccount @entity {
defaultDisplayName: String

# IPFS Metadata. Duplicated for backwards compatibility
metadata: GraphAccountMetadata!
metadata: GraphAccountMetadata
"True if it is an organization. False if it is an individual"
isOrganization: Boolean
"Main repository of code for the graph account"
Expand Down Expand Up @@ -443,7 +443,7 @@ type Subgraph @entity {
"Subgraph metadata"
metadataHash: Bytes!
"Subgraph metadata ipfs hash and entity"
metadata: SubgraphMetadata!
metadata: SubgraphMetadata
"Short description of the subgraph"
description: String
"Image in string format"
Expand Down Expand Up @@ -537,7 +537,7 @@ type SubgraphVersion @entity {

metadataHash: Bytes!
# Metadata from IPFS linked in GNS
metadata: SubgraphVersionMetadata!
metadata: SubgraphVersionMetadata
"Short description of the version"
description: String
"Semantic versioning label"
Expand Down

0 comments on commit 9192898

Please sign in to comment.