9

是否可以仅通过 graphql 服务器结合中继和反应来验证具有不同角色的用户?

我环顾四周,找不到关于这个主题的太多信息。

在我当前的设置中,具有不同角色的登录功能仍然通过传统的 REST API...(使用 json Web 令牌“保护”)。

4

1 回答 1

6

我在我的一个应用程序中完成了它,基本上你只需要一个用户界面,如果没有人登录,这个用户界面在第一个根查询中返回 null,然后你可以使用传递凭据的登录突变来更新它。主要问题是在 post 中继请求中获取 cookie 或会话,因为它不处理请求中的 cookie 字段。

这是我的客户突变:

 export default class LoginMutation extends Relay.Mutation {
  static fragments = {
    user: () => Relay.QL`
      fragment on User {
        id,
        mail
      }
    `,
  };
  getMutation() {
    return Relay.QL`mutation{Login}`;
  }

  getVariables() {
    return {
      mail: this.props.credentials.pseudo,
      password: this.props.credentials.password,
    };
  }
  getConfigs() {
    return [{
      type: 'FIELDS_CHANGE',
      fieldIDs: {
        user: this.props.user.id,
      }
    }];
  }
  getOptimisticResponse() {
    return {
      mail: this.props.credentials.pseudo,
    };
  }
  getFatQuery() {
    return Relay.QL`
    fragment on LoginPayload {
      user {
        userID,
        mail
      }
    }
    `;
  }
}

这是我的模式侧突变

var LoginMutation = mutationWithClientMutationId({
  name: 'Login',
  inputFields: {
    mail: {
      type: new GraphQLNonNull(GraphQLString)
    },
    password: {
      type: new GraphQLNonNull(GraphQLString)
    }
  },
  outputFields: {
    user: {
      type: GraphQLUser,
      resolve: (newUser) => newUser
    }
  },
  mutateAndGetPayload: (credentials, {
    rootValue
  }) => co(function*() {
    var newUser = yield getUserByCredentials(credentials, rootValue);
    console.log('schema:loginmutation');
    delete newUser.id;
    return newUser;
  })
});

为了让我的用户通过页面刷新保持登录状态,我发送我自己的请求并用 cookie 字段填充它...这是目前使其工作的唯一方法...

于 2015-10-10T18:36:23.647 回答