tablemaker icon indicating copy to clipboard operation
tablemaker copied to clipboard

How can I get value and label of dropdown column in graphql request?

Open Jones-S opened this issue 4 months ago • 1 comments

Question

For now I think I can only get rows via graphql and this will return the value and not the label. Is it also possible to retrieve the label too?

Additional context

Part of my GraphQL request

tablemaker {
    rows # <-- here I have no further options?!
    columns {
      heading
      type
      width
      align
    }
  }

Jones-S avatar Aug 25 '25 13:08 Jones-S

That's correct, sorry. For now, you can only get the value, as changing it now would be an otherwise breaking change (it would need to return an object, rather than a string, breaking people's current usage).

engram-design avatar Aug 26 '25 01:08 engram-design