GraphQL calls with mirror fields using MondayClient

Hello, I have a graphQL call to fetch the values from a Monday board which uses mirror fields, below is my query, this runs perfectly in the monday api playground but when running it from the application code, I don’t receive any data or errors. The GraphQL call runs forever. The same graphQL call runs in playground though.

query{
boards(limit: 1, ids: [boardID]) {
name
items_page {
items{
id
column_values(types: [mirror, board_relation, text]) {
id
type
value
text
… on MirrorValue {
display_value
}
}
}
}
}
}