Created
December 19, 2021 17:19
-
-
Save Akifcan/7fbb3daa702a3f6d84b9ab207fcd0f6e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
String query = ''' | |
mutation CREATE_COMMENT(\$productId: String!, \$content: String!, \$rating: Float!, \$images: [String!]!){ | |
createComment(productId: \$productId, comment: {content: \$content , rating: \$rating, images: \$images }){ | |
content, | |
rating, | |
userId | |
} | |
} | |
'''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment