We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dataFormatId
The queries for the dataFormats BED-JSON and LBNL/Klems work fine.
When I query for a dataFormatId which IGSDB does not yet offer, IGSDB returns all data sets instead of none.
query { MBforResourcesWithDataFormat: databases { nodes { name allOpticalData( where: { resources: { some: { dataFormatId: { equalTo: "dc419491-29de-496d-95a7-a41938a9200c" } } } } ) { nodes { resourceTree { root { value { dataFormatId locator } } } } } } } }
{ "data": { "MBforResourcesWithDataFormat": { "nodes": [ { "name": "Daylighting Database", "allOpticalData": null }, { "name": "IGSDB", "allOpticalData": { "nodes": [ { "resourceTree": { "root": { "value": { "dataFormatId": "9ca9e8f5-94bf-4fdd-81e3-31a58d7ca708", "locator": "https://igsdb-icon.herokuapp.com/api/v1/products/196/?json_format=buildingenvelopedata.org" } } } },
The text was updated successfully, but these errors were encountered:
I can query https://igsdb-v2.herokuapp.com/graphql/ with
{ allOpticalData( where: {resources: {some: {dataFormatId: {equalTo: "dc419491-29de-496d-95a7-a41938a9200c"}}}} ) { edges { node { componentId nearnormalHemisphericalSolarReflectances nearnormalHemisphericalSolarTransmittances nearnormalHemisphericalVisibleReflectances nearnormalHemisphericalVisibleTransmittances infraredEmittances resourceTree { root { value { locator } } } } } } }
but IGSDB_V2 still returns many data sets instead of none.
Sorry, something went wrong.
simon-wacker
No branches or pull requests
The queries for the dataFormats BED-JSON and LBNL/Klems work fine.
When I query for a
dataFormatId
which IGSDB does not yet offer, IGSDB returns all data sets instead of none.The text was updated successfully, but these errors were encountered: