Auto expand output object in playground

When I run a new query in playground I see that the output is collapsed. For example if I run
await api.shopifyShop.findMany({
filter: {
planName: { in: ["basic", "professional"] },
state: { inState: "created.installed" },
},
select: { id: true, name: true, state: true, planName: true }
});
await api.shopifyShop.findMany({
filter: {
planName: { in: ["basic", "professional"] },
state: { inState: "created.installed" },
},
select: { id: true, name: true, state: true, planName: true }
});
The output is
Array(8)[0:GadgetRecord_,1:GadgetRecord_,2:GadgetRecord_,3:GadgetRecord_,4:GadgetRecord_,…];
Array(8)[0:GadgetRecord_,1:GadgetRecord_,2:GadgetRecord_,3:GadgetRecord_,4:GadgetRecord_,…];
Causing me to click on each of the array items and then expand it one by one. How can I auto expand the output by default?
1 Reply
Chocci_Milk
Chocci_Milk6mo ago
Hello, There's currently no way to do this. Please add a #feature-requests post on the subject

Did you find this page helpful?