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

Integrate DGraph fork changes #179

Draft
wants to merge 38 commits into
base: master
Choose a base branch
from
Draft

Integrate DGraph fork changes #179

wants to merge 38 commits into from

Commits on Nov 3, 2020

  1. Merge pull request #5 from vektah/master

    Sync changes with upstream
    pawanrawal authored Nov 3, 2020
    Configuration menu
    Copy the full SHA
    c92922d View commit details
    Browse the repository at this point in the history
  2. Changed vektah to dgraph-io

    harshil authored and pawanrawal committed Nov 3, 2020
    Configuration menu
    Copy the full SHA
    2487809 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    11dafed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8dcf919 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #7 from dgraph-io/jatin/GraphQl-789

    Fixes GRAPHQL-789
    This PR allows coercing of single values in variables to list.
    JatinDev543 authored Nov 3, 2020
    Configuration menu
    Copy the full SHA
    c23012d View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2020

  1. Configuration menu
    Copy the full SHA
    b296ca2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #8 from dgraph-io/jatin/GRAPHQL-745

    fix(GraphQL): This PR change the coerced slice to type interface.
    JatinDev543 authored Dec 14, 2020
    Configuration menu
    Copy the full SHA
    af5c357 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2021

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

Commits on Jan 19, 2021

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

Commits on Jan 20, 2021

  1. Merge pull request #9 from dgraph-io/jatin/GRAPHQL-959

    The following query was giving panic because here we passed ID as an int which is expected to be a string.
    
    query allStories {
          queryUser(filter: {
            id: 22
          }) {
            stories {
              id
              text
            }
          }
        }
    
    We now added input coercion so that the ID type value will be coerced to string type. And if we give a slice of integer values or the required type is [ID] then that will be coerced to slice of integer values.
    JatinDev543 authored Jan 20, 2021
    Configuration menu
    Copy the full SHA
    b48c15b View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2021

  1. removed extra check

    JatinDev543 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    41867a0 View commit details
    Browse the repository at this point in the history
  2. added test

    JatinDev543 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    a39ba99 View commit details
    Browse the repository at this point in the history
  3. reformat code a bit

    JatinDev543 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    83d89f4 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #10 from dgraph-io/jatin/fixIdBug

    fix(GraphQL): Fix bug that got introduced in last commit , which doesn't allow string value in [ID] to be coerced to list.
    JatinDev543 authored Jan 21, 2021
    Configuration menu
    Copy the full SHA
    d604941 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2021

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

Commits on Feb 12, 2021

  1. Configuration menu
    Copy the full SHA
    3a9b1f5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11 from dgraph-io/jatin/GRAPHQL-1006

    Fixes GRAPHQL-1006
    In this PR we have added input coercion for Integers which are passed in variables.
    Previously this code was part of dgraph.
    JatinDev543 authored Feb 12, 2021
    Configuration menu
    Copy the full SHA
    147d6c6 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2021

  1. Configuration menu
    Copy the full SHA
    3521f39 View commit details
    Browse the repository at this point in the history
  2. format imports

    JatinDev543 committed Feb 24, 2021
    Configuration menu
    Copy the full SHA
    a86723d View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2021

  1. Configuration menu
    Copy the full SHA
    45e53e4 View commit details
    Browse the repository at this point in the history
  2. fix tests

    JatinDev543 committed Feb 25, 2021
    Configuration menu
    Copy the full SHA
    cb06f9b View commit details
    Browse the repository at this point in the history
  3. clean code

    JatinDev543 committed Feb 25, 2021
    Configuration menu
    Copy the full SHA
    d9375ee View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12 from dgraph-io/jatin/GRAPHQL-1007

    Fixes: GRAPHQL-1007
    We have allowed to paas @cascade arguments through variables in dgraph. For that we needed input validations check which is added in this library.
    JatinDev543 authored Feb 25, 2021
    Configuration menu
    Copy the full SHA
    f103f8e View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. fixed panic

    JatinDev543 committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    4e8354a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #13 from dgraph-io/jatin/Fix-stringPanic

    fix(GraphQL): fix validation when we give non-string value in variable and expected type is string.
    JatinDev543 authored Feb 26, 2021
    Configuration menu
    Copy the full SHA
    6c9552e View commit details
    Browse the repository at this point in the history
  3. fix error

    JatinDev543 committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    0488d0a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #14 from dgraph-io/jatin/Fix-stringError

    fix(GraphQL): fix error while validation when we give Int or Float to String.
    JatinDev543 authored Feb 26, 2021
    Configuration menu
    Copy the full SHA
    6adf0a9 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

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

Commits on Mar 16, 2021

  1. Merge pull request #15 from dgraph-io/jatin/GRAPHQL-1081

    fix(GRAPHQL): Remove support of String --> int32 coercion in variables.
    JatinDev543 authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    eb159c9 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2021

  1. Configuration menu
    Copy the full SHA
    d24123f View commit details
    Browse the repository at this point in the history
  2. Add tests

    all-seeing-code committed Mar 19, 2021
    Configuration menu
    Copy the full SHA
    f3f3532 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #16 from dgraph-io/anurags92/gwlparserfix

    fix(Parser): Add directive argument validator
    all-seeing-code authored Mar 19, 2021
    Configuration menu
    Copy the full SHA
    7914f56 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2021

  1. Configuration menu
    Copy the full SHA
    97b20a5 View commit details
    Browse the repository at this point in the history
  2. fmt run

    aman-bansal committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    40ef820 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #17 from dgraph-io/aman/add_order_to_rules

    chore: adding order to the validation rules
    aman-bansal authored Aug 31, 2021
    Configuration menu
    Copy the full SHA
    4b0b96a View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2021

  1. Configuration menu
    Copy the full SHA
    adfb85a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #18 from dgraph-io/naman/sort

    fix(validate): fix race condition in rules sort
    NamanJain8 authored Dec 2, 2021
    Configuration menu
    Copy the full SHA
    f1c512b View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. Replace dgraph-io with vektah

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    7a7d21b View commit details
    Browse the repository at this point in the history