2021-11-26 11:07:33 +00:00
|
|
|
enum BlogKind {
|
|
|
|
short
|
|
|
|
long
|
2021-11-16 07:35:05 +00:00
|
|
|
}
|
|
|
|
|
2021-11-26 11:07:33 +00:00
|
|
|
type Blog @entity {
|
2021-11-17 11:31:09 +00:00
|
|
|
id: ID!
|
2021-11-26 11:07:33 +00:00
|
|
|
kind: BlogKind!
|
|
|
|
isActive: Boolean!
|
|
|
|
reviews: [BigInt!]!
|
|
|
|
author: Author!
|
|
|
|
categories: [Category!]!
|
2021-11-17 11:31:09 +00:00
|
|
|
}
|
|
|
|
|
2021-11-26 11:07:33 +00:00
|
|
|
type Author @entity {
|
2021-09-28 06:58:43 +00:00
|
|
|
id: ID!
|
2021-11-26 11:07:33 +00:00
|
|
|
blogCount: BigInt!
|
|
|
|
name: String! # string
|
|
|
|
rating: BigDecimal!
|
2021-11-16 07:35:05 +00:00
|
|
|
paramInt: Int! # uint8
|
2021-11-26 12:18:08 +00:00
|
|
|
paramBigInt: BigInt! # uint256
|
2021-11-16 07:35:05 +00:00
|
|
|
paramBytes: Bytes!
|
2021-11-26 11:07:33 +00:00
|
|
|
blogs: [Blog!]! @derivedFrom(field: "author")
|
2021-11-22 10:16:29 +00:00
|
|
|
}
|
|
|
|
|
2021-11-26 11:07:33 +00:00
|
|
|
type Category @entity {
|
2021-11-22 10:16:29 +00:00
|
|
|
id: ID!
|
2021-11-26 11:07:33 +00:00
|
|
|
name: String!
|
2021-11-22 10:16:29 +00:00
|
|
|
count: BigInt!
|
2021-09-28 06:58:43 +00:00
|
|
|
}
|