* Set a field value in the store for the given type, key and field * name — and optionally field arguments. * * If the the field return type is an `ObjectType` or a list of * `ObjectType`, you can set references to other entity as value: * * ```ts * // set the viewer name * s
(args: SetArgs<KeyT>)
| 167 | * ``` |
| 168 | */ |
| 169 | set<KeyT extends KeyTypeConstraints = string>(args: SetArgs<KeyT>): void; |
| 170 | |
| 171 | /** |
| 172 | * Shorthand for `set({typeName, key, fieldName, value})`. |
no outgoing calls