├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ └── main.yml ├── .gitignore ├── .phpcs.xml.dist ├── .phpunit-watcher.yml ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin ├── install-wp-tests.sh ├── setup-wp └── wait-for-it.sh ├── cloud-build └── pull-requests.yaml ├── composer.json ├── composer.lock ├── docker-compose.yml ├── docs └── img │ ├── filtered-simple-clothing.png │ ├── query-1.png │ ├── query-2.png │ ├── results-of-query-or-example.png │ ├── sandals-results.png │ └── simple-clothing-store.png ├── phpunit.xml.dist ├── readme.txt ├── sonar-project.properties ├── src ├── aggregate-query.php ├── filter-exception.php └── filter-query.php ├── tests ├── bootstrap.php ├── src │ ├── aggregate-query.test.php │ └── filter-query.test.php └── wp-graphql-filter-query.test.php └── wp-graphql-filter-query.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @wpengine/orion -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /bin/setup-wp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/bin/setup-wp -------------------------------------------------------------------------------- /bin/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/bin/wait-for-it.sh -------------------------------------------------------------------------------- /cloud-build/pull-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/cloud-build/pull-requests.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/img/filtered-simple-clothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/filtered-simple-clothing.png -------------------------------------------------------------------------------- /docs/img/query-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/query-1.png -------------------------------------------------------------------------------- /docs/img/query-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/query-2.png -------------------------------------------------------------------------------- /docs/img/results-of-query-or-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/results-of-query-or-example.png -------------------------------------------------------------------------------- /docs/img/sandals-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/sandals-results.png -------------------------------------------------------------------------------- /docs/img/simple-clothing-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/docs/img/simple-clothing-store.png -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/readme.txt -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/aggregate-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/src/aggregate-query.php -------------------------------------------------------------------------------- /src/filter-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/src/filter-exception.php -------------------------------------------------------------------------------- /src/filter-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/src/filter-query.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/src/aggregate-query.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/tests/src/aggregate-query.test.php -------------------------------------------------------------------------------- /tests/src/filter-query.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/tests/src/filter-query.test.php -------------------------------------------------------------------------------- /tests/wp-graphql-filter-query.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/tests/wp-graphql-filter-query.test.php -------------------------------------------------------------------------------- /wp-graphql-filter-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/wp-graphql-filter-query/HEAD/wp-graphql-filter-query.php --------------------------------------------------------------------------------