SetNamespace is used to set namespace requests within a single instance of GraphJin. For example queries with the same name
(ns string)
| 682 | |
| 683 | // SetNamespace is used to set namespace requests within a single instance of GraphJin. For example queries with the same name |
| 684 | func (rc *RequestConfig) SetNamespace(ns string) { |
| 685 | rc.ns = &ns |
| 686 | } |
| 687 | |
| 688 | // GetNamespace is used to get the namespace requests within a single instance of GraphJin |
| 689 | func (rc *RequestConfig) GetNamespace() (string, bool) { |
no outgoing calls