Skip to content

Commit 9662ef8

Browse files
committed
feat: codegen supergraph
1 parent e2ee763 commit 9662ef8

File tree

8 files changed

+2784
-774
lines changed

8 files changed

+2784
-774
lines changed

app/config/galoy-instances.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const GALOY_INSTANCES: readonly GaloyInstance[] = [
8181
{
8282
id: "Local",
8383
name: "Local",
84-
graphqlUri: `http://${scriptHostname()}:4002/graphql`,
84+
graphqlUri: `http://${scriptHostname()}:5004/graphql`,
8585
graphqlWsUri: `ws://${scriptHostname()}:4002/graphqlws`,
8686
authUrl: `http://${scriptHostname()}:4002`,
8787
posUrl: `http://${scriptHostname()}:3000`,

app/graphql/generated.gql

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,24 @@ query myUserId {
929929
}
930930
}
931931

932+
query myWelcomeProfile {
933+
me {
934+
id
935+
defaultAccount {
936+
... on ConsumerAccount {
937+
id
938+
welcomeProfile {
939+
innerCircleAllTimeCount
940+
__typename
941+
}
942+
__typename
943+
}
944+
__typename
945+
}
946+
__typename
947+
}
948+
}
949+
932950
query network {
933951
globals {
934952
network

0 commit comments

Comments
 (0)