Closed MortenHofft closed 4 weeks ago
add option to query datasets and collections with a query input type, instead of distinct params. It makes no difference for functionality, but it makes it easier to write queries elsewhere as we do not have to spell out all the options.
so instead of
query DatasetSearch($networkKey: [ID], $publishingCountry: [Country], $keyword: [String], ...)
we can do query DatasetSearch($query: DatasetSearchInput) ...
query DatasetSearch($query: DatasetSearchInput) ...
add option to query datasets and collections with a query input type, instead of distinct params. It makes no difference for functionality, but it makes it easier to write queries elsewhere as we do not have to spell out all the options.
so instead of
we can do
query DatasetSearch($query: DatasetSearchInput) ...