Here in relay tutorial they say:
Graphene creates globally unique IDs for all objects.
You may need to copy this value from the results of the first query
Those ids look like this SW5ncmVkaWVudE5vZGU6MQ==. And when querying a list of item in id field one can see that ids.
How can I get normal (int) ids? Or frontend should convert int ids into string ids?
Create a custom
relay.Node
class and override thefrom_global_id(...)
method