Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: radix/graphql-rust.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: source
Choose a base ref
...
head repository: graphql-rust/graphql-rust.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: source
Choose a head ref
  • 20 commits
  • 17 files changed
  • 9 contributors

Commits on Feb 25, 2018

  1. fix hidden code in quickstart example

    code is only hidden when prefixed by `#` followed by a space, so the `struct` and `impl` lines were showing up in the rendered docs.
    radix authored and theduke committed Feb 25, 2018
    Configuration menu
    Copy the full SHA
    ab51174 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2018

  1. Add a juniper::execute example to the Quickstart

    I was looking for how to use Juniper standalone from the guide, and sorta pieced this together from examples. Hope it's useful either in the quickstart or elsewhere.
    tcr authored and theduke committed Apr 29, 2018
    Configuration menu
    Copy the full SHA
    b15792e View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2018

  1. Configuration menu
    Copy the full SHA
    c87a3ce View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2018

  1. Configuration menu
    Copy the full SHA
    a2ffbf8 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2018

  1. Configuration menu
    Copy the full SHA
    9f77ea9 View commit details
    Browse the repository at this point in the history
  2. Bare minimum to document latest release (graphql-rust#9)

    * Update README, adding warp and hyper integration crates
    
    * Bump version number in quickstart
    
    This is is a step towards graphql-rust#8.
    LegNeato authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    8470389 View commit details
    Browse the repository at this point in the history
  3. Remove .0 from version in quickstart

    This way the directions will still appear relevant for 0.10.x, though there won't be any real difference due to the way cargo treats semver.
    LegNeato authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    e280563 View commit details
    Browse the repository at this point in the history
  4. Fix skeptic and enable tests in Travis (graphql-rust#11)

    * Switch to travis Rust images. Rather than using a node image and installing rust,
    we will use the rust images and install node. This makes it easy to test on stable/beta/nightly.
    
    * Ignore Iron skeptic tests. These are failing to build and I don't know why:
    ```
    error[E0277]: expected a `std::ops::Fn<(&mut iron::request::Request<'_, '_>,)>` closure, found `juniper_iron::GraphQLHandler<'_, for<'r, 's, 't0> fn(&'r mut iron::Request<'s, 't0>) -> std::result::Result<(), iron::IronError> {context_factory}, Root, juniper::EmptyMutation<()>, ()>`
      --> /var/folders/f3/7xdpkjk508z7b90jfqg1dn2m0000gn/T/rust-skeptic.vXzza3OIPuba/test.rs:34:11
       |
    34 |     mount.mount("/graphql", graphql_endpoint);
       |           ^^^^^ expected an `Fn<(&mut iron::request::Request<'_, '_>,)>` closure, found `juniper_iron::GraphQLHandler<'_, for<'r, 's, 't0> fn(&'r mut iron::Request<'s, 't0>) -> std::result::Result<(), iron::IronError> {context_factory}, Root, juniper::EmptyMutation<()>, ()>`
       |
       = help: the trait `for<'r, 's, 't0> std::ops::Fn<(&'r mut iron::request::Request<'s, 't0>,)>` is not implemented for `juniper_iron::GraphQLHandler<'_, for<'r, 's, 't0> fn(&'r mut iron::Request<'s, 't0>) -> std::result::Result<(), iron::IronError> {context_factory}, Root, juniper::EmptyMutation<()>, ()>`
       = note: required because of the requirements on the impl of `iron::middleware::Handler` for `juniper_iron::GraphQLHandler<'_, for<'r, 's, 't0> fn(&'r mut iron::Request<'s, 't0>) -> std::result::Result<(), iron::IronError> {context_factory}, Root, juniper::EmptyMutation<()>, ()>`
    
    error[E0277]: expected a `std::ops::Fn<(&mut iron::Request<'_, '_>,)>` closure, found `mount::Mount`
      --> /var/folders/f3/7xdpkjk508z7b90jfqg1dn2m0000gn/T/rust-skeptic.vXzza3OIPuba/test.rs:36:17
       |
    36 |     let chain = Chain::new(mount);
       |                 ^^^^^^^^^^ expected an `Fn<(&mut iron::Request<'_, '_>,)>` closure, found `mount::Mount`
       |
       = help: the trait `for<'r, 's, 't0> std::ops::Fn<(&'r mut iron::Request<'s, 't0>,)>` is not implemented for `mount::Mount`
       = note: required because of the requirements on the impl of `iron::Handler` for `mount::Mount`
       = note: required by `iron::Chain::new`
    
    error: aborting due to 2 previous errors
    ```
    
    * Install js dependencies
    LegNeato authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    92d611f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6d05ce4 View commit details
    Browse the repository at this point in the history
  6. Only deploy from one job (graphql-rust#12)

    We will deploy when the stable job triggered from `source` goes green
    LegNeato authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    a0faf88 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2018

  1. Configuration menu
    Copy the full SHA
    b2d1c76 View commit details
    Browse the repository at this point in the history
  2. Document skipping fields

    LegNeato committed Sep 14, 2018
    Configuration menu
    Copy the full SHA
    ec23915 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    41f2fb0 View commit details
    Browse the repository at this point in the history
  4. Fill out some server information

    These are basically just stubs, but at least there is something.
    LegNeato committed Sep 14, 2018
    Configuration menu
    Copy the full SHA
    54cf650 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    841ba8c View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2018

  1. Configuration menu
    Copy the full SHA
    58a21d1 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2018

  1. Configuration menu
    Copy the full SHA
    57ea10b View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2018

  1. Configuration menu
    Copy the full SHA
    3f37087 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

  1. Configuration menu
    Copy the full SHA
    73e32f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2023

  1. Configuration menu
    Copy the full SHA
    38706c7 View commit details
    Browse the repository at this point in the history
Loading