Git Product home page Git Product logo

wp-graphql's Introduction

Logo

WPGraphQL

WebsiteDocs • Join Slack

GraphQL API for WordPress.

Actions Status Actions Status codecov Backers on Open Collective Sponsors on Open Collective


Quick Install

Download and install like any WordPress plugin. Details on Install and Activation

Documentation

Documentation can be found here. The repository where the Documentation content lives is here

  • Requires PHP 5.5+
  • Requires WordPress 4.7+

Overview

This plugin brings the power of GraphQL to WordPress.

GraphQL is a query language spec that was open sourced by Facebook® in 2015, and has been used in production by Facebook® since 2012.

GraphQL has some similarities to REST in that it exposes an HTTP endpoint where requests can be sent and a JSON response is returned. However, where REST has a different endpoint per resource, GraphQL has just a single endpoint and the data returned isn't implicit, but rather explicit and matches the shape of the request.

A REST API is implicit, meaning that the data coming back from an endpoint is implied. An endpoint such as /posts/ implies that the data I will retrieve is data related to Post objects, but beyond that it's hard to know exactly what will be returned. It might be more data than I need or might not be the data I need at all.

GraphQL is explicit, meaning that you ask for the data you want and you get the data back in the same shape that it was asked for.

Additionally, where REST requires multiple HTTP requests for related data, GraphQL allows related data to be queried and retrieved in a single request, and again, in the same shape of the request without any worry of over or under-fetching data.

GraphQL also provides rich introspection, allowing for queries to be run to find out details about the Schema, which is how powerful dev tools, such as GraphiQl have been able to be created.

GraphiQL API Explorer

GraphiQL is a fantastic GraphQL API Explorer / IDE. There are various versions of GraphiQL that you can find, including a Chrome Extension but my recommendation is the GraphiQL desktop app below:

  • Download the GraphiQL Desktop App

    • Once the app is downloaded and installed, open the App.
    • Set the GraphQL Endpoint to http://yoursite.com/graphql. In order for the /graphql endpoint to work, you must have pretty permalinks enabled.
    • You should now be able to browse the GraphQL Schema via the "Docs" explorer at the top right.
    • On the left side, you can execute GraphQL Queries
    GraphiQL API Explorer

POSSIBLE BREAKING CHANGES

Please note that as the plugin continues to take shape, there might be breaking changes at any point. Once the plugin reaches a stable 1.0.0 release, breaking changes should be minimized and communicated appropriately if they are required.

Unit Testing and Code Coverage

Before anything is merged into the WPGraphQL code base it must pass all tests and have 100% code coverage. Travis-CI and Coveralls will check this when you create a pull request to the WPGraphQL repo. However, before that happens, you should ensure all of these requirements are met locally. The following will help you set up both testing and code coverage in your local environment.

Prerequisites

To run unit tests and code coverage during development you'll need the following:

Test Database

In order for tests to run, you need MySQL setup locally. The test suite will need 2 databases for testing. One named wpgraphql_serve and the other you can name yourself. You can keep these databases around if you like and the test suite will use the existing databases, or you can delete them when you're done testing and the test suite will re-install them as needed the next time you run the script to install the tests.

NOTE: You'll want the test database to be a true test database, not a database with valuable, existing information. The tests will create new data and clear out data, and you don't want to cause issues with a database you're actually using for projects.

Installing the Test Suite

To install the test suite/test databases, from the root of the plugin directory, in the command line run:

bin/install-wp-tests.sh <db-name> <db-user> <db-pass> [db-host] [wp-version]

For example:

bin/install-wp-tests.sh wpgraphql_test root password 127.0.0.1 latest

DEBUGGING:

  • If you have run this command before in another branch you may already have a local copy of WordPress downloaded in your /private/tmp directory. If this is the case, please remove it and then run the install script again. Without removing this you may receive an error when running phpunit.

  • This is installed into your machine's tmp directory, so if you restart your computer, you will need to re-run this script to install.

Local Environment Configuration for Codeception Tests

You may have different local environment configuration than what Travis CI has to run the tests, such as database username/password.

In the /tests directory you will find *.suite.dist.yml config files for each of the codeception test suites.

You can copy those files and remove the .dist from the filename, and that file will be loaded locally before the .dist file.

For example, if you wanted to update the dbName or dbPassword for your local tests, you could copy wpunit.suite.dist.yml to wpunit.suite.yml and update the dbName or dbPassword value to reflect your local database and password.

This file is .gitignored, so it will remain in your local environment but will not be added to the repo when you submit pull requests.

Running the Tests

The tests are built on top of the Codeception testing framework.

To run the tests, after you've installed the test suite, as described above, you need to also install the wp-browser.

@todo: Make this easier than running all these steps, but for now this is what we've got to do. Perhaps someone who's more of a Composer expert could lend some advise?:

  • rm -rf composer.lock vendor to remove all composer dependencies and the composer lock file
  • composer require lucatume/wp-browser --dev to install the Codeception WordPress deps
  • vendor/bin/codecept run to run all the codeception tests
    • You can specify which tests to run like:
      • vendor/bin/codecept run wpunit
      • vendor/bin/codecept run functional
      • vendor/bin/codecept run acceptance
    • If you're working on a class, or with a specific test, you can run that class/test with:
      • vendor/bin/codecept run tests/wpunit/NodesTest.php
      • vendor/bin/codecept run tests/wpunit/NodesTest.php:testPluginNodeQuery

Using Docker

Docker can be used to run tests or a local application instance in an isolated environment. It can also take care of most of the set up and configuration tasks performed by a developer.

  1. Verify Docker CE 17.09.0+ is installed:

    sudo docker --version
    
  2. Verify Docker Compose is installed:

    sudo docker-compose --version
    
  3. (Optional, but handy) How to use Docker without having to type, sudo.

Running Wordpress + wp-graphql

  1. Start a local instance of WordPress. This will run the instance in the foreground:
    ./run-docker-local-app.sh
    
  2. Visit http://127.0.0.1:8000.

Using PHPStorm/IntelliJ+XDebug (OS X and Linux)

  1. Make sure PHPStorm/IntelliJ is listenting on port 9000 for incoming XDebug connections from the WP container (for more info on remote XDebug debugging, visit https://xdebug.org/docs/remote): alt text

  2. Create a PHP server mapping. This tells the debugger how to map a file path in the container to a file path on the host OS. alt text

  3. Create a PHP Debug run configuration. alt text

  4. Run WordPress+the plugin with XDebug enabled. Here's an example:

    ./run-docker-local-app-xdebug.sh
    
  5. Start the debugger: alt text

  6. Now when you visit http://127.0.0.1:8000 you can use the debugger.

Using MySQL clients to connect to MySQL containers

  1. Run the application with desired sites. Here's an example:

    ./run-docker-local-app.sh
    
  2. List the MySQL containers that are running and their MySQL port mappings. These ports will change each time the app is run:

    ./list-mysql-containers.sh
    

    You should see output like the following:

    aa38d8d7eff1        mariadb:10.2.24-bionic          "docker-entrypoint.s…"   14 seconds ago      Up 13 seconds       0.0.0.0:32772->3306/tcp   docker_mysql_test_1
    
  3. Configure your MySQL client to connect to localhost and the appropriate host port. For example, to connect to the MySQL container shown above, have the MySQL client connect with this configuration:

    • IP/Hostname: localhost
    • Port: 32772
    • Database: wpgraphql_test
    • User: root
    • Password: testing

Running tests with Docker

For developers

You'll need two terminal windows for this. The first window is to start the Docker containers needed for running tests. The second window is where you'll log into one of the running Docker containers (which will have OS dependencies already installed) and run your tests as you make code changes.

  1. In the first terminal window, start up a pristine Docker testing environment by running this command:
    ./run-docker-test-environment.sh
    
    This step will take several minutes the first time it's run because it needs to install OS dependencies. This work will be cached so you won't have to wait as long the next time you run it. You are ready to go to the next step when you see output similar to the following:
    wpgraphql.test_1  | [Tue Oct 30 15:04:33.917067 2018] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
    
    
  2. In the second terminal window, access the Docker container shell from which you can run tests:
    ./run-docker-test-environment-shell.sh
    
    You should eventually see a prompt like this:
    root@cd8e4375eb6f:/tmp/wordpress/wp-content/plugins/wp-graphql
    
  3. Now you are ready to work in your IDE and test your changes by running any of the following commands in the second terminal window):
    vendor/bin/codecept run wpunit --env docker
    vendor/bin/codecept run functional --env docker
    vendor/bin/codecept run acceptance --env docker
    vendor/bin/codecept run tests/wpunit/NodesTest.php --env docker
    vendor/bin/codecept run tests/wpunit/NodesTest.php:testPluginNodeQuery --env docker
    

Notes:

  • If you make a change that requires composer install to be rerun, shutdown the testing environment and restart it to automatically rerun the composer install in the testing environment.
  • Leave the container shell (the second terminal window) by typing exit.
  • Shutdown the testing environment (the first terminal window) by typing Ctrl + c
  • Docker artifacts will usually be cleaned up automatically when the script completes. In case it doesn't do the job, try these solutions:
For CI tools (e.g. Travis)
  • Run the tests in pristine Docker environments by running any of these commands:

    ./run-docker-tests.sh 'wpunit'
    ./run-docker-tests.sh 'functional'
    ./run-docker-tests.sh 'acceptance'
    
  • Run the tests in pristine Docker environments with different configurations. Here are some examples:

    env PHP_VERSION='7.1' ./run-docker-tests.sh 'wpunit'
    env PHP_VERSION='7.1' COVERAGE='true' ./run-docker-tests.sh 'functional'
    

If COVERAGE='true' is set, results will appear in docker-output/.

Notes:

  • Code coverage for functional and acceptance tests is only supported for PHP 7.X.

Updating WP Docker software versions

Make sure the docker/docker-compose*.yml files refer to the most recent and specific version of the official WordPress Docker and MySQL compatible images. Please avoid using the latest Docker tag. Once Docker caches a Docker image for a given tag onto your machine, it won't automatically check for updates. Using an actual version number ensures Docker image caches are updated at the right time.

List of software versions to check:

  • Travis config .travis.yml

  • Test base Dockerfile (Dockerfile.test-base)

    • XDebug
    • Official WordPress/PHP Docker image
    • PHP Composer
  • XDebug Dockerfile (Dockerfile.xdebug)

    • XDebug

Generating Code Coverage

You can generate code coverage for tests by passing --coverage, --coverage-xml or --coverage-html with the tests.

  • --coverage will print coverage info to the screen
  • --coverage-xml will save an XML file that can be used by services like Coveralls or CodeCov
  • --coverage-html will save the coverage report in an HTML file that you can browse.

The coverage details will be output to /tests/_output

Running Individual Files

As you'll note, running all of the tests in the entire test suite can be time consuming. If you would like to run only one test file instead of all of them, simply pass the test file you're trying to test, like so:

vendor/bin/codecept run wpunit AvatarObjectQueriesTest

To capture coverage for a single file, you can run the test like so:

vendor/bin/codecept run wpunit AvatarObjectQueriesTest --coverage

And you can output the coverage locally to HTML like so:

vendor/bin/codecept run wpunit AvatarObjectQueriesTest --coverage --coverage-html

Linting

As a helpful development tool, you can enable automatic linting before commiting.

  1. Run npm install.
  2. Before development, run composer install
  3. After you're done run composer install --no-dev to remove development dependencies

(Steps 2 and 3 will be removed once we have an automated build process. See wp-graphql#224)

Your changed files will now be linted via phpcs and your commit will fail with a list of errors if there are any.

Shout Outs

This plugin brings the power of GraphQL (http://graphql.org/) to WordPress.

The plugin is built on top of the graphql-php library by Webonyx (https://github.com/webonyx/graphql-php) and makes use of the graphql-relay-php library by Ivome (https://github.com/ivome/graphql-relay-php/)

Special thanks to Gatsby (http://gatsbyjs.com) for allocating development resources to push the project forward.

Some of the concepts and code are based on the WordPress Rest API. Much love to the folks (https://github.com/orgs/WP-API/people) that put their blood, sweat and tears into the WP-API project, as it's been huge in moving WordPress forward as a platform and helped inspire and direct the development of WPGraphQL.

Much love to Facebook® for open sourcing the GraphQL spec (https://facebook.github.io/graphql/), the amazing GraphiQL dev tools (https://github.com/graphql/graphiql), and maintaining the JavaScript GraphQL reference implementation (https://github.com/graphql/graphql-js)

Much love to Apollo (Meteor Development Group) for their work on driving GraphQL forward and providing a lot of insight into how to design GraphQL schemas, etc. Check them out: http://www.apollodata.com/

Contributors

This project exists thanks to all the people who contribute. [Contribute].

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

wp-graphql's People

Contributors

0averyan avatar aberkow avatar aramzs avatar be-webdesign avatar chriszarate avatar codeprokid avatar curtisbelt avatar dingo-d avatar esamattis avatar frozzare avatar ginatrapani avatar henrikwirth avatar hews avatar hsimah avatar hughdevore avatar jacobarriola avatar jasonbahl avatar jydmnd avatar kellenmace avatar kidunot89 avatar luchianenco avatar mikelking avatar mngi-arogers avatar moox avatar myleshyson avatar pjpak avatar renatonascalves avatar t0lya avatar timhanlon avatar tylerbarnes avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.