Closed
Description
API path to grab the current parent/child tag relations
What I have in mind is something to the effect of (using somewhat contrived examples)
get_tags/get_children?parent=dress
which returns
{
"children": [ "red dress", "orange dress", "yellow dress", "..." ]
}
and,
get_tags/get_parents?child=red dress
which returns
{
"parents": [ "dress", "red clothing", "..." ]
}
But there are dozens of ways to probably go about this, so anything functionally equivalent works
(Sorry if this is a duplicate, I searched for this and didn't find this already. I'll move this to a comment of the pre-existing issue if it is)