@@ -247,8 +247,8 @@ type GraphAccount @entity {
247
247
"Default display name is the current default name. Used for filtered queries in the explorer"
248
248
defaultDisplayName : String
249
249
250
- # IPFS Metadata .
251
- metadata : GraphAccountMetadata
250
+ # IPFS Meta .
251
+ metadata : GraphAccountMeta
252
252
253
253
# Operator info
254
254
"Operator of other Graph Accounts"
@@ -301,7 +301,7 @@ type GraphAccount @entity {
301
301
tokenLockWallets : [TokenLockWallet ! ]!
302
302
}
303
303
304
- type GraphAccountMetadata @entity (immutable :true ) {
304
+ type GraphAccountMeta @entity (immutable :true ) {
305
305
"IPFS hash with account metadata details"
306
306
id : ID !
307
307
"Account that reference this metadata file. For compatibility purposes. For the full list use graphAccounts"
@@ -433,17 +433,17 @@ type Subgraph @entity {
433
433
"Total amount of NameSignal entities"
434
434
nameSignalCount : Int !
435
435
436
- # Metadata from IPFS linked in GNS
436
+ # Meta from IPFS linked in GNS
437
437
"Subgraph metadata"
438
438
metadataHash : Bytes
439
439
"Subgraph metadata ipfs hash and entity"
440
- metadata : SubgraphMetadata
440
+ metadata : SubgraphMeta
441
441
442
442
# Auxiliary fields
443
443
currentVersionRelationEntity : CurrentSubgraphDeploymentRelation
444
444
}
445
445
446
- type SubgraphMetadata @entity (immutable :true ) {
446
+ type SubgraphMeta @entity (immutable :true ) {
447
447
"Subgraph metadata ipfs hash"
448
448
id : ID !
449
449
"Subgraph that reference this metadata. For compatibility purposes. For the full list use subgraphs"
@@ -500,15 +500,15 @@ type SubgraphVersion @entity {
500
500
createdAt : Int !
501
501
502
502
metadataHash : Bytes
503
- # Metadata from IPFS linked in GNS
504
- metadata : SubgraphVersionMetadata
503
+ # Meta from IPFS linked in GNS
504
+ metadata : SubgraphVersionMeta
505
505
506
506
entityVersion : Int !
507
507
"[DEPRECATED] Used for duplicate entities to enable old IDs from before the subgraph NFT update"
508
508
linkedEntity : SubgraphVersion
509
509
}
510
510
511
- type SubgraphVersionMetadata @entity (immutable :true ) {
511
+ type SubgraphVersionMeta @entity (immutable :true ) {
512
512
"Subgraph version metadata ipfs hash"
513
513
id : ID !
514
514
"SubgraphVersion entity that references this metadata. For compatibility purposes. For the full list use subgraphVersions"
@@ -654,7 +654,7 @@ type SubgraphDeploymentManifest @entity(immutable:true) {
654
654
# }
655
655
656
656
"""
657
- Metadata for the Indexer along with parameters and staking data
657
+ Meta for the Indexer along with parameters and staking data
658
658
"""
659
659
type Indexer @entity {
660
660
"Eth address of Indexer"
@@ -1452,7 +1452,7 @@ type _Schema_
1452
1452
name : " subgraphMetadataSearch"
1453
1453
language : en
1454
1454
algorithm : rank
1455
- include : [{ entity : " SubgraphMetadata " , fields : [{ name : " displayName" }, { name : " description" }] }]
1455
+ include : [{ entity : " SubgraphMeta " , fields : [{ name : " displayName" }, { name : " description" }] }]
1456
1456
)
1457
1457
@fulltext (
1458
1458
name : " curatorSearch"
0 commit comments