8 lines
114 B
GraphQL
8 lines
114 B
GraphQL
# import "./author.fragment.graphql"
|
|
|
|
fragment PostF on Post {
|
|
name
|
|
title
|
|
content
|
|
author { ...AuthorF }
|
|
}
|