-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
45 lines (37 loc) · 935 Bytes
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
### This file was generated by Nexus Schema
### Do not make changes to this file directly
type Bio {
email: String!
github: URL!
linkedin: URL!
name: String!
objective: String!
tagline: String!
website: URL!
}
"""
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
type Position {
achievements: [String!]!
company: String!
endDate: Date
id: ID!
location: String!
months: Int!
"""When I started at this position"""
startDate: Date!
title: String!
years: Int!
}
type Query {
bio: Bio!
"""Find a position by its ID"""
position(id: ID): Position
positions: [Position!]!
}
"""
A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt.
"""
scalar URL