Skip to content

GraphQL API: submissionsConnection, user nodes have loginId as nulls for all users #2260

Open
@uta-pmizilin

Description

@uta-pmizilin

Summary:

Steps to reproduce:

Using the following query:

query MyQuery {
  course(id: "654321") {
    sisId
    assignmentsConnection {
      nodes {
        name
        pointsPossible
        submissionTypes
        submissionsConnection(first: 10) {
          nodes {
            user {
              _id
              sisId
              loginId
              email
              shortName
            }
            score
          }
        }
      }
    }
  }
}

Expected behavior:

'loginId' attributes should not be null

Actual behavior:

'loginId' attributes are nulls

Additional notes:

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions