-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add queries examples #90
base: main
Are you sure you want to change the base?
Conversation
Supergraph build was successful! 🎉 Build URLs:
Console URLs:
Commit ID: 4a399f6 |
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.
Couple of changes noted in the comments. I believe @sandalsoft is going to create a PR with an updated .gitignore
that we should piggy-back on.
Would love if the queries directory had a brief README too
Well, apologies about all the changed files! That was careless on my part. I didn't realize I had some extra cruft in there. I'll take a look at removing the extra files. |
Supergraph build was successful! 🎉 Build URLs:
Console URLs:
Commit ID: 04b7c0c |
Supergraph build was successful! 🎉 Build URLs:
Console URLs:
Commit ID: dc51ae9 |
@typhonius What's the goal of an additional readme? It's documented in the wiki, but I'd almost rather have some kind of script invoke these queries with |
@@ -0,0 +1,43 @@ | |||
query CustomerDashboard { | |||
billing(where: { customerId: { _eq: "7" } }) { |
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.
Any reason why we're hard coding this as 7 when CustomerBehaviorAnalysis
above uses a variable? I'm easy with either but consistency across both would be best.
Mostly to act as a quick reference for each of the files to show what each does and what the intention is when demonstrating (especially for public view vs our private wiki). I love the idea of a command too—maybe a simple shell script in the queries directory to invoke it? |
Supergraph build was successful! 🎉 Build URLs:
Console URLs:
Commit ID: 4fd4a0f |
No description provided.