Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 261 Bytes

File metadata and controls

18 lines (17 loc) · 261 Bytes

Access GraphQL client

URL: http://localhost:8080/graphql Method: POST

query {
    recentPosts(count: 10, offset: 0) {
        id
        title
        category
        author {
            id
            name
            thumbnail
        }
    }
}