Don’t forget,
to see samples of queries and mutations,
download, then import, the Postman collection: Quick start / 5. Test your first query in Postman

This guide explains the main concepts of Hot Chocolate for using Sage Active Public API V2

query {
    journalTypes (
        where: { 
            or: [
             {type: {eq: PURCHASE_INVOICE}},
             {code: {eq: "VTE"}},
             {code: {eq: "VNTS"}},
             {code: {eq: "VKR"}}
            ]}
    ){
        edges {
            node {
               id
               code
               type
               name
            }
        }
        totalCount
        pageInfo {
            hasNextPage
        }
    }     
}