-
-
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
Nov 26, 2024
1 parent
87566a2
commit 5dc9bdf
Showing
9 changed files
with
79 additions
and
0 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 AppFields on App { | ||
metadata { | ||
name | ||
logo | ||
} | ||
} |
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,12 @@ | ||
fragment PostFields on Post { | ||
id | ||
isDeleted | ||
isEdited | ||
stats { | ||
...PostStatsFields | ||
} | ||
author { | ||
...AccountFields | ||
} | ||
timestamp | ||
} |
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 PostStatsFields on PostStats { | ||
bookmarks | ||
collects | ||
comments | ||
quotes | ||
reactions | ||
reposts | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/indexer/documents/fragments/post-metadata/MetadataAttributeFields.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,5 @@ | ||
fragment MetadataAttributeFields on MetadataAttribute { | ||
type | ||
key | ||
value | ||
} |
12 changes: 12 additions & 0 deletions
12
packages/indexer/documents/fragments/post-metadata/media-fields/MediaAudioFields.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,12 @@ | ||
fragment MediaAudioFields on MediaAudio { | ||
artist | ||
audio { | ||
optimized { | ||
uri | ||
} | ||
} | ||
cover { | ||
...EncryptableImageSetFields | ||
} | ||
license | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/indexer/documents/fragments/post-metadata/media-fields/MediaFields.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,11 @@ | ||
fragment MediaFields on AnyMedia { | ||
... on MediaVideo { | ||
...MediaVideoFields | ||
} | ||
... on MediaImage { | ||
...MediaImageFields | ||
} | ||
... on MediaAudio { | ||
...MediaAudioFields | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/indexer/documents/fragments/post-metadata/media-fields/MediaImageFields.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,5 @@ | ||
fragment MediaImageFields on MediaImage { | ||
image { | ||
...EncryptableImageSetFields | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/indexer/documents/fragments/post-metadata/media-fields/MediaVideoFields.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,11 @@ | ||
fragment MediaVideoFields on MediaVideo { | ||
video { | ||
optimized { | ||
uri | ||
} | ||
} | ||
cover { | ||
...EncryptableImageSetFields | ||
} | ||
license | ||
} |
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,9 @@ | ||
mutation Aauthenticate($request: SignedAuthChallenge!) { | ||
authenticate(request: $request) { | ||
... on AuthenticationTokens { | ||
accessToken | ||
refreshToken | ||
idToken | ||
} | ||
} | ||
} |
5dc9bdf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
web – ./
web-heyxyz.vercel.app
hey.xyz
heyxyz.vercel.app
web-git-main-heyxyz.vercel.app