Skip to content

Commit

Permalink
chore(schema): deprecate mobility data queries in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert27 committed Nov 19, 2024
1 parent 52e6faf commit 6e21ce4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 4 additions & 0 deletions src/schema/schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ type Query {
Get the current parking data in Ingolstadt. This includes the main parking lots and garages near the university.
"""
parking: ParkingData!
@deprecated(reason: "Mobility dat is no longer available")
"""
Get the current electric vehicle charging stations in Ingolstadt. This includes the main charging stations near the university.
"""
charging: [ChargingStation!]!
@deprecated(reason: "Mobility data is no longer available")
"""
Get the meal plan for a specific restaurant.
"""
Expand All @@ -22,10 +24,12 @@ type Query {
Get the current bus departures at a specific station
"""
bus(station: BusStation!): [Bus!]!
@deprecated(reason: "Mobility data is no longer available")
"""
Get the current train departures at a specific station
"""
train(station: TrainStation!): [Train!]!
@deprecated(reason: "Mobility data is no longer available")
"""
Get the current announcements
"""
Expand Down

0 comments on commit 6e21ce4

Please sign in to comment.