canvas-lms/spec/graphql
Matthew Lemon 1454d80d8e add address book graphql types
fixes VICE-868
flag=react_inbox

TEST PLAN:
- navigate to /graphiql and run the following query

```
query MyQuery {
  legacyNode(_id: <user_id>, type: User) {
    ... on User {
      id
      email
      recipients {
        contextsConnection {
          nodes {
            id
            name
            avatarUrl
            permissions {
              sendMessages
              sendMessagesAll
            }
            userCount
          }
        }
        usersConnection {
          nodes {
            name
            commonCoursesConnection {
              nodes {
                type
                course {
                  name
                }
              }
            }
            commonGroupsConnection {
              nodes {
                name
              }
            }
          }
        }
      }
    }
  }
}
```

- The query should return some results
- You can also play around with pagination to ensure that works
  as well

Change-Id: I63666a7225e3ac051990f24c11199a9a40569edc
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/253043
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Rob Orton <rob@instructure.com>
QA-Review: Rob Orton <rob@instructure.com>
Product-Review: Rob Orton <rob@instructure.com>
2020-12-08 17:15:30 +00:00
..
loaders add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
mutations remove feature mute_notifications_by_course 2020-12-02 18:14:53 +00:00
selenium add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
types add address book graphql types 2020-12-08 17:15:30 +00:00
graphql_helpers_spec.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
graphql_spec_helper.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
legacy_node_spec.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
mutation_audit_log_spec.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
postgres_statement_timeout_spec.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00
token_scoping_spec.rb add # frozen_string_literal: true for specs 2020-10-27 20:48:35 +00:00