Example implementation for React Hooks abstracting away the need to know graphql
import {
useTransactionsByOwnerQuery
} from './generated'
const {
data, error, loading
} = useTransactionsByOwnerQuery({
variables: {
owner: 'some-address'
}
})