schema.gql 593 Bytes
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------

input CreateMyInput {
  name: String!
  type: String
}

type Mutation {
  createMyPage(createMyInput: CreateMyInput!): MyPage!
}

type MyPage {
  id: Int!
  name: String!
  type: String
}

type Post {
  author: String!
  category: String!
  content: String!
  created_date: String!
  id: Int!
  title: String!
  updated_date: String
}

type Query {
  getPost(id: Float!): Post!
  getPosts: [Post!]!
  myPage: [MyPage!]!
}