Fix seeds

This commit is contained in:
Matt Rider 2019-04-17 12:51:30 -03:00
parent f46e5ee58c
commit 4dc39a97a8

View File

@ -3,7 +3,7 @@ import uuid from 'uuid/v4'
export default function (params) {
const {
id = uuid(),
postId = 'p6',
content = [
faker.lorem.sentence(),
faker.lorem.sentence()
@ -13,7 +13,7 @@ export default function (params) {
return `
mutation {
CreateComment(
id: "${id}",
postId: "${postId}",
content: "${content}"
) { id, content }
}