-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yoginth
committed
Dec 4, 2024
1 parent
f080324
commit 20a9e5f
Showing
8 changed files
with
123 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fragment AmountFields on Amount { | ||
asset { | ||
...AssetFields | ||
} | ||
value | ||
} |
4 changes: 4 additions & 0 deletions
4
packages/indexer/documents/fragments/BooleanValueFields copy.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fragment NetworkAddressFields on NetworkAddress { | ||
address | ||
chainId | ||
} |
5 changes: 1 addition & 4 deletions
5
packages/indexer/documents/fragments/account/SimplePaymentFollowRuleFields.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
fragment SimplePaymentFollowRuleFields on SimplePaymentFollowRule { | ||
amount { | ||
asset { | ||
...AssetFields | ||
} | ||
value | ||
...AmountFields | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
packages/indexer/documents/fragments/post/PostActionFields.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
fragment PostActionFields on PostAction { | ||
... on SimpleCollectActionSettings { | ||
...SimpleCollectActionSettingsFields | ||
} | ||
... on UnknownActionSettings { | ||
...UnknownActionSettingsFields | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/indexer/documents/fragments/post/collect/SimpleCollectActionSettingsFields.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
fragment SimpleCollectActionSettingsFields on SimpleCollectActionSettings { | ||
collectLimit | ||
collectNft | ||
endsAt | ||
followerOnly | ||
recipient | ||
referralFee | ||
amount { | ||
...AmountFields | ||
} | ||
contract { | ||
...NetworkAddressFields | ||
} | ||
recipients { | ||
recipient | ||
split | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/indexer/documents/fragments/post/collect/UnknownActionSettingsFields.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fragment UnknownActionSettingsFields on UnknownActionSettings { | ||
__typename | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.