update graphql nodejs samples

This commit is contained in:
William Cheng 2022-05-27 00:33:10 +08:00
parent e83f1ed9f4
commit 210b43afe2

View File

@ -13,8 +13,8 @@ type Pet {
id: Int!
category: Category
name: String!
photoUrls: String!
tags: Tag
photoUrls: [String!!]
tags: [Tag!]
# pet status in the store
status: StatusEnum
}