當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Apollo.mutate方法代碼示例

本文整理匯總了TypeScript中apollo-angular.Apollo.mutate方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Apollo.mutate方法的具體用法?TypeScript Apollo.mutate怎麽用?TypeScript Apollo.mutate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在apollo-angular.Apollo的用法示例。


在下文中一共展示了Apollo.mutate方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: save

 public save() {
   if (!this.form.valid) return;
   this.apollo.mutate({
     mutation: AddPostMutation,
     variables: {
       "data": {
         "title": this.form.value.title,
         "content" :this.form.value.content
       }
     },
     refetchQueries: [{
       query: GetPostsQuery,
     }],
   })
   .take(1)
     .subscribe({
       next: ({ data }) => {
         console.log('got a new post', data);
         // get new data      
         this.router.navigate(['/posts']);
       }, error: (errors) => {
         console.log('there was an error sending the query', errors);
       }
     });
 }
開發者ID:dgayathiri,項目名稱:mean,代碼行數:25,代碼來源:new-post.component.ts

示例2: Promise

 return new Promise((resolve, reject) => {
     this.apollo.mutate<DeletePostInterface>({
         mutation: RemovePostMutation,
         variables: {
             "id": id
         },
     })
         .take(1)
         .subscribe({
             next: ({ data }) => {
                 console.log('delete post', data.removePost);
                 // update data
                 resolve({
                     success: true,
                     message: `Post #${id} deleted successfully  `
                 });
             },
             error: (errors) => {
                 console.log('there was an error sending the query', errors);
                 reject({
                     success: false,
                     message: errors
                 })
             }
         });
 });
開發者ID:dgayathiri,項目名稱:mean,代碼行數:26,代碼來源:posts.service.ts

示例3: submitContactRequest

 submitContactRequest(contactRequest: ContactRequest): Observable<Date> {
   return this.apollo
     .mutate({
       mutation: submitContactRequest,
       variables: { name: contactRequest.name, email: contactRequest.email, message: contactRequest.message },
     })
     .pipe(map((result: FetchResult<ContactResponse>) => new Date(result.data.submitContactRequest.sentAt)));
 }
開發者ID:fischermatte,項目名稱:geolud,代碼行數:8,代碼來源:contact.service.ts

示例4: loginWithServiceAccessToken

 // tslint:disable-next-line
 loginWithServiceAccessToken(service: string, accessToken: string): Observable<ApolloQueryResult<LoginWithServiceAccessTokenMutation.Result>> {
   return this.apollo.mutate({
     mutation: loginWithServiceAccessTokenMutation,
     variables: {
       service,
       accessToken,
     },
   });
 }
開發者ID:RocketChat,項目名稱:Rocket.Chat.PWA,代碼行數:10,代碼來源:login-page.service.ts

示例5: update

 update(id: number, personPatch: any) {
   return this.apollo.mutate({
     mutation: updateProfile,
     variables: {
       id: id,
       personPatch: personPatch
     }
   });
 }
開發者ID:ngocdiep,項目名稱:nd,代碼行數:9,代碼來源:profile.service.ts

示例6:

 return Observable.create(observer => {
   this.apollo.mutate<any>({ mutation: gql`${queryStr}` }).subscribe(res => {
     // Clear cache immediatelly on a delete operation
     this.apollo.getClient().clearStore()
       .catch(ex => Logger.log(ex))
       .finally(() => {
         observer.next(res);
         observer.complete();
       });
   });
 });
開發者ID:OysteinAmundsen,項目名稱:gymsystems,代碼行數:11,代碼來源:graph.service.ts

示例7: multipleUpload

 public multipleUpload(files: FileList | File[]): Observable<FetchResult> {
   return this.apollo
     .mutate({
       mutation: MULTIPLE_UPLOAD,
       variables: {
         text: '123',
         files
       }
     })
     .pipe(map(res => {
       return res;
     }));
 }
開發者ID:ngocdiep,項目名稱:nd,代碼行數:13,代碼來源:file-upload.service.ts

示例8: upvote

 upvote() {
   this.apollo.mutate({
     mutation: gql`
       mutation upvotePost($postId: Int!) {
         upvotePost(postId: $postId) {
           id
           votes
         }
       }
     `,
     variables: {
       postId: this.postId,
     },
   }).subscribe();
 }
開發者ID:ramanujprasad,項目名稱:ApolloAngularApp2,代碼行數:15,代碼來源:upvoter.component.ts

示例9: generateNextQuestion

  generateNextQuestion() {
    const nextQuestion = gql`
      mutation {
        newQuestion {
          round
          questionNumber
          question {
            question
          }
        }
      }
    `;

    return this.apollo.mutate({
      mutation: nextQuestion
    }).map(res => res.data.newQuestion);
  }
開發者ID:Timmahh,項目名稱:questionable-bets,代碼行數:17,代碼來源:question.service.ts


注:本文中的apollo-angular.Apollo.mutate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。