Bright Chip

Results 16 comments of Bright Chip

Thank you for the talking . I was hardly working on the migration. And i have finished 70% of the project after a week. I'm using Old Meteor Project for...

Hi. Note: I was using Meteor all over the project. I actually finished the migration week ago . After switched into Apollo the data for communication getting 4x times smaller...

I also tried using clientId + secret but same . No response no error ```` spauth .getAuth(Sharepoint_Site, { clientId: Sharepoint_ClientId, clientSecret: Sharepoint_ClientSecret, // realm: '85e5f09b-4c17-4d80-afea-260bb171c456' }) .then(data => { console.log('data',...

The problem seems to be with my Meteor which has problem with running the packages

I forgot how I fixed that (It seems to be caused by the style inside \, So I removed all the style and js links from third party and host...

How to fix this ? The task never run even after 20 minutes

I have also tried initialize the accountsboost with this: ` const accounts = (await accountsBoost({ db: accountsMongo, tokenSecret: process.env.TOKEN_SECRET || 'tkn1gR2NBXDSxvusp2VFcZ97g8vNBoz1TM5duaDldza8YyarGpJqU9OpVsMGWXZYUOSXx', services: [{ accountsPassword }] }, )).graphql();` The warning about...

Did you find out ? How do we check the token on server? Can it use seperated Redis for Token checking

I think i got this: schema: ` import { gql } from 'apollo-server-express'; export default gql type Query { users: [User!] user(_id: ID!): User } extend type Mutation { updateUser(username:...