Last active
October 14, 2022 17:40
-
-
Save taras/bae70177aabeba269342c7ab715b60db to your computer and use it in GitHub Desktop.
Examples of using GraphQL Schema and Operations to define CLI from the server
This file contains hidden or 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
query EnvironmentsView($cursor: String) { | |
@table | |
environments(first: 10, after: $cursor) { | |
nodes { | |
... on Environment { | |
name | |
namespace | |
deployment { | |
name | |
createdBy | |
createdAt @format(type: "date", preset: DATE_SHORT) | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment