Skip to content
New issue

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

Natural filtering #5

Open
wants to merge 3 commits into
base: 1.0
Choose a base branch
from
Open

Natural filtering #5

wants to merge 3 commits into from

Commits on Aug 31, 2019

  1. Implemented natural field filtering

    For each content type connection, a 'filter' argument allows to filter based on the content type's field definitions.
    Each content type is matched with a {ContentType}Filter type with each searchable field from the type.
    
    ```
    {
      content {
        articles(filter: {title: "~text"}) {
          edges {
            node {
              _name
            }
          }
        }
      }
    }
    ```
    Bertrand Dunogier committed Aug 31, 2019
    Configuration menu
    Copy the full SHA
    633c526 View commit details
    Browse the repository at this point in the history
  2. Fixed and optimized CachedContentTypeLoader

    Bertrand Dunogier committed Aug 31, 2019
    Configuration menu
    Copy the full SHA
    28cc241 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2019

  1. fixup! Implemented natural field filtering

    Bertrand Dunogier committed Sep 4, 2019
    Configuration menu
    Copy the full SHA
    9d7677c View commit details
    Browse the repository at this point in the history