Skip to content

v0.4.0

Choose a tag to compare

@github-actions github-actions released this 29 Mar 13:25
· 184 commits to main since this release
4a93c5c

Added

  • Supporting new cds-plugin technique for zero configuration
  • Support for filtering by null values
  • Allow multiple filters on the same field, with the same operator, that are logically joined by AND. For example, filtering for all books with titles that contain both strings, "Wuthering" and "Heights":
    {
      AdminService {
        Books(filter: { title: { contains: ["Wuthering", "Heights"] } }) {
          nodes {
            title
          }
        }
      }
    }

Changed

  • Improved handling of null and undefined values in query arguments
  • Empty filter lists resolve to false and empty filter objects resolve to true

Fixed

  • Handling of GraphQL queries that are sent via GET requests using the query URL parameter if GraphiQL is enabled