This commit is contained in:
benbot 2023-10-25 03:58:10 -04:00
parent 6a258db47f
commit beaf92f7c4
22 changed files with 773 additions and 238 deletions

View file

@ -0,0 +1,19 @@
defmodule EzcontainerRailway.Railway do
alias EzcontainerRailway.GraphqlClient
def get_projects(token) do
GraphqlClient.query(
"""
query {
projects {
edges {
node {
id
}
}
}
}
""",
token: token
)
end
end