{
  endsWithRole: roles(filter:{
    name: { like: "%role"}
  }) {
    # [$.data.endsWithRole.totalCount=3]
    totalCount
    elements {
      name
      uuid
    }
  }

  endsWithRoleAndAdmin: roles(filter:{
    or: [
    	{name: { equals:"admin"}}
    	{name: { like: "%role"}}
    ]
  }) {
    # [$.data.endsWithRoleAndAdmin.totalCount=4]
    totalCount
    elements {
      name
      uuid
    }
  }
}
# [$.errors=<is-undefined>]