building-envelope-data / database

Reference implementation of a product data server as part of the product data network buildingenvelopedata.org
MIT License
0 stars 0 forks source link

Enable queries for `uValues` #54

Open christoph-maurer opened 7 months ago

christoph-maurer commented 7 months ago

When I query https://www.solarbuildingenvelopes.com/graphql/ with

query {
  allCalorimetricData() {
    edges {
      node {
        uuid
        uValues
      }
    }
  }
}

I receive several data sets with a U value greater than 0.1. When I query with

query {
  allCalorimetricData(
    where: { uValues: { some: { greaterThanOrEqualTo: 0.1 } } }
  ) {
    edges {
      node {
        uuid
      }
    }
  }
}

I don't get a result. I have the same problem in the frontend https://www.solarbuildingenvelopes.com/data/calorimetric .