async getInstance()

in src/store/modules/selectors.ts [169:187]


    async getInstance(instanceId: string, isRelation?: boolean) {
      if (!instanceId) {
        return;
      }
      const res = await graphql.query("queryInstance").params({
        instanceId,
      });
      if (!res.errors) {
        if (isRelation) {
          this.currentDestPod = res.data.instance || null;
          this.destPods = [res.data.instance];
          return res;
        }
        this.currentPod = res.data.instance || null;
        this.pods = [res.data.instance];
      }

      return res;
    },