-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scope down sub-packages and merge into main package (#10)
* add in pothos simple list * remove CLI and such * readme * yeaya * cleanup * cleanup * cleanup more * produce schema.graphql * readme
- Loading branch information
1 parent
1136938
commit 2608923
Showing
44 changed files
with
397 additions
and
1,124 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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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,62 @@ | ||
""" | ||
A date string, such as 2007-12-03, compliant with the `full-date` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. | ||
""" | ||
scalar Date | ||
|
||
""" | ||
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). | ||
""" | ||
scalar JSON | ||
|
||
type Launch implements Node { | ||
details: String | ||
id: ID! | ||
image: String! | ||
launchDate: String! | ||
name: String! | ||
rocket: Rocket! | ||
site: Site! | ||
} | ||
|
||
type Location { | ||
latitude: Float! | ||
longitude: Float! | ||
name: String! | ||
region: String! | ||
} | ||
|
||
type Mutation { | ||
_version: String! | ||
} | ||
|
||
interface Node { | ||
id: ID! | ||
} | ||
|
||
type Query { | ||
_version: String! | ||
launches(limit: Int, offset: Int): QueryLaunchesList! | ||
node(id: ID!): Node | ||
nodes(ids: [ID!]!): [Node]! | ||
} | ||
|
||
type QueryLaunchesList { | ||
nodes: [Launch]! | ||
totalCount: Int | ||
} | ||
|
||
type Rocket implements Node { | ||
company: String! | ||
cost: Int! | ||
country: String! | ||
description: String! | ||
id: ID! | ||
} | ||
|
||
type Site implements Node { | ||
details: String! | ||
id: ID! | ||
location: Location! | ||
name: String! | ||
status: String! | ||
} |
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
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
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
Oops, something went wrong.