What is the best way to store global state data for an application. Right now I have a State Type, and I only create one of this object which I read/update as needed. If a second was created for whatever reason it would totally break things.
I want to store the state in Slash GraphQL. Right now the State is just simply one field, but more things may be added later.
Is there a better way than just creating a type and pre-creating the initial row of it to later read/update as needed. Is there a way to enforce only having one instance of this type?