Skip to content

Commit

Permalink
Update schema for custom types
Browse files Browse the repository at this point in the history
  • Loading branch information
irees committed Oct 15, 2024
1 parent 8ed5aaa commit 862112a
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 27 deletions.
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ github.com/interline-io/transitland-dbutil v0.0.0-20241007223837-7564820963d3 h1
github.com/interline-io/transitland-dbutil v0.0.0-20241007223837-7564820963d3/go.mod h1:kgcAMx0H8Hrg9NCT6pxJhJqtN5itAhEQmaalFQjTGaQ=
github.com/interline-io/transitland-jobs v0.0.0-20241007224018-cfcf2ea0fd72 h1:B22lnyOgSlPfZYSOXlCDRk+QHIPuk0H5/MjKf6jZUto=
github.com/interline-io/transitland-jobs v0.0.0-20241007224018-cfcf2ea0fd72/go.mod h1:8hAqZ//zkgpxGMcGEHPs/zmFNw7DMhkvMl6WyYbCSM0=
github.com/interline-io/transitland-lib v0.17.0-rc0.0.20241012083049-a625335066cc h1:Hq8E5blL6iJF0RFfRWDAb46U9Z1kyNyskOqIi8rK7D0=
github.com/interline-io/transitland-lib v0.17.0-rc0.0.20241012083049-a625335066cc/go.mod h1:1H9CH3iavzKjdJjLnhyu5MI35K/ySotez6cotosB0F0=
github.com/interline-io/transitland-lib v0.17.0-rc0.0.20241015071458-d6b6e1a235e9 h1:oliODclrAkaUgE8NGxhyLclOcZEPqCx6jDxlBpAp2eA=
github.com/interline-io/transitland-lib v0.17.0-rc0.0.20241015071458-d6b6e1a235e9/go.mod h1:1H9CH3iavzKjdJjLnhyu5MI35K/ySotez6cotosB0F0=
github.com/interline-io/transitland-mw v0.0.0-20241007223948-3ff905d6e27e h1:XJmgG8Aq9R4rC0FnBocCV1rr9RwEBJFcvnC1WDHmlqI=
Expand Down
90 changes: 70 additions & 20 deletions internal/generated/gqlout/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions schema/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -825,21 +825,21 @@ type FeedInfo {
"GTFS feed_info.feed_publisher_name"
feed_publisher_name: String!
"GTFS feed_info.feed_publisher_url"
feed_publisher_url: String!
feed_publisher_url: Url!
"GTFS feed_info.feed_lang"
feed_lang: String!
feed_lang: Language!
"GTFS feed_info.default_lang"
default_lang: String
default_lang: Language
"GTFS feed_info.feed_version"
feed_version: String!
"GTFS feed_info.feed_start_date"
feed_start_date: Date
"GTFS feed_info.feed_end_date"
feed_end_date: Date
"GTFS feed_info.feed_contact_email"
feed_contact_email: String
feed_contact_email: Email
"GTFS feed_info.feed_contact_url"
feed_contact_url: String
feed_contact_url: Url
}

# Archived observed stop-times
Expand Down

0 comments on commit 862112a

Please sign in to comment.