Skip to content

Commit

Permalink
Update graphql schema with new filtering endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Jun 19, 2024
1 parent c56cea7 commit 6963d79
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/main/resources/graphql/user.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ type User {
firstName: String!
lastName: String!

products(after: ID, limit: Int = 10): [L2RasterProduct!]!
products(
cycle: Int,
pass: Int,
scene: Int,
outputGranuleExtentFlag: Boolean,
outputSamplingGridType: GridType,
rasterResolution: Int,
utmZoneAdjust: Int,
mgrsBandAdjust: Int,
beforeTimestamp: String,
afterTimestamp: String,

# Pagination
after: ID,
limit: Int = 10
): [L2RasterProduct!]!

rasterDefinitions(
id: ID,
outputGranuleExtentFlag: Boolean,
Expand Down

0 comments on commit 6963d79

Please sign in to comment.