You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For compound queries with specific syntaxes such as AND OR NOT, etc., I would delegate to your examples of q per above. These examples are also in the WIS2 Cookbook (please feel free to suggest more examples there as well).
In the keyword search it is apparently possible to search for several keyword values, whereby the default operator ‘AND’ seems to be used, e.g.
https://wis2.dwd.de/gdc/collections/wis2-discovery-metadata/items?f=json&limit=200&keywords=prediction
--> numberMatched = 58
https://wis2.dwd.de/gdc/collections/wis2-discovery-metadata/items?f=json&limit=200&keywords=prediction,global
--> numberMatched = 34
https://wis2.dwd.de/gdc/collections/wis2-discovery-metadata/items?f=json&limit=200&keywords=prediction,global,%22Weather%20and%20Climate%22
--> numberMatched = 29
It seems to be possible to change the operator to OR, e.g. via
https://wis2.dwd.de/gdc/collections/wis2-discovery-metadata/items?f=json&limit=200&q=(keywords:prediction%20global)
--> numberMatched = 96
Does this behaviour apply in principle?
The text was updated successfully, but these errors were encountered: