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