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

Test "refresh" mutation #24

Closed
Sddilora opened this issue Apr 1, 2024 · 1 comment
Closed

Test "refresh" mutation #24

Sddilora opened this issue Apr 1, 2024 · 1 comment
Assignees
Labels
Be sub-issue Sub-task within a larger task testing Tasks or issues for testing system functionality and reporting any identified issues

Comments

@Sddilora
Copy link
Member

Sddilora commented Apr 1, 2024

Test the "refresh" mutation with all possible cases and create an issue if any bugs are found. If you encounter unexpected behavior or are unsure if it is intended, please create an issue for that as well.

You can find an example issue and bug report (or a question if this is a bug) in this link.

"Test GraphQL Query and Mutation" guide is available for further assistance.

@Sddilora Sddilora added the testing Tasks or issues for testing system functionality and reporting any identified issues label Apr 1, 2024
@Feyzanrs Feyzanrs added the sub-issue Sub-task within a larger task label Apr 1, 2024
@Smnrgcl
Copy link
Member

Smnrgcl commented Apr 23, 2024

MUTATİON:

mutation RefreshToken {
  refresh(token: {
    AuthenticationToken: "oldAuthToken",
    RefreshToken: "validRefreshToken"
  }) {
    AuthenticationToken
    RefreshToken
  }
}

RESULT:

  "data": {
    "refresh": {
      "AuthenticationToken": "newAuthToken"
      "RefreshToken": "newRefreshToken"
    }
  }
}

I've conducted several tests with refresh queries similar to the example provided and did not encounter any errors.

@Smnrgcl Smnrgcl closed this as completed Apr 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Be sub-issue Sub-task within a larger task testing Tasks or issues for testing system functionality and reporting any identified issues
Projects
None yet
Development

No branches or pull requests

4 participants