custom directives (e.g. graphql-constraint-directive based constraints) are not applied for Mutations. However, if used in a query these validations are applied #1236
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue labeled | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
bug_report_label: | |
if: ${{ github.event.label.name == 'bug' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: alex-page/github-project-automation-plus@303f24a24c67ce7adf565a07e96720faf126fe36 # v0.9.0 | |
with: | |
project: Bug Triage | |
column: Bug reports | |
repo-token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} | |
action: add | |
- name: Add comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Many thanks for raising this bug report @${{ github.event.issue.user.login }}. :bug: We will now attempt to reproduce the bug based on the steps you have provided. | |
Please ensure that you've provided the necessary information for a minimal reproduction, including but not limited to: | |
* Type definitions | |
* Resolvers | |
* Query and/or Mutation (or multiple) needed to reproduce | |
If you have a support agreement with Neo4j, please link this GitHub issue to a new or existing Zendesk ticket. | |
Thanks again! :pray: | |
confirmed_label: | |
if: ${{ github.event.label.name == 'confirmed' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
We've been able to confirm this bug using the steps to reproduce that you provided - many thanks @${{ github.event.issue.user.login }}! :pray: We will now prioritise the bug and address it appropriately. | |
- uses: alex-page/github-project-automation-plus@303f24a24c67ce7adf565a07e96720faf126fe36 # v0.9.0 | |
with: | |
project: Bug Triage | |
column: Confirmed | |
repo-token: ${{ secrets.NEO4J_TEAM_GRAPHQL_PERSONAL_ACCESS_TOKEN }} |