module
0.0.0-20210616034122-b36981d297a4
Repository: https://github.com/jasonsoft/starter.git
Documentation: pkg.go.dev
# README
Starter
test
query listEvent{
getEvents(input: {id:0, title:""}){
id
title
description
publishedStatus
createdAt
updatedAt
}
}
query getEvent{
getEvent(eventID: 2){
id
title
description
publishedStatus
createdAt
updatedAt
}
}
query getWallet{
getWallet{
id
amount
updatedAt
}
}
mutation publishEvent {
publishEvent(input:{eventID: 1})
}