I have a JSONField which seems to be successfully storing a JSON as a string in my database.
How do I retrieve this data as a dictionary?
class Package:
node = JSONField(null=True, blank=True)
packageInstance = Package.objects.get(id=packageId)
print(packageInstance.node)