Apollo Elements 3를 사용하여 GraphQL을 궤도에 올리십시오.
4681 단어 webcomponentsopensourcegraphql
Apollo Elements를 사용하여 웹 구성 요소를 뷰 레이어로 사용하여 GraphQL 기반 앱을 작성하십시오. Apollo Elements는 기본적으로 lit-element , hybrids 및 gluon을 지원하거나 사용자 정의 요소 믹스인을 사용하여 모든 사용자 정의 요소 기본 클래스에 대한 지원을 추가할 수 있습니다.
Apollo Elements 3는 개발자 경험에 대한 모든 개선 사항과 함께 새로운 Apollo Client 3를 지원합니다.
import { ApolloQuery } from '@apollo-elements/lit-apollo';
import { customElement, html } from 'lit-element';
import { gql } from '@apollo/client/core';
interface Data {
name: string;
greeting: string;
}
interface Variables {
name?: string;
}
@customElement('hello-query')
class HelloQuery extends ApolloElement<Data, Variables> {
query = gql`
query HelloQuery($name: String) {
name
greeting
}
`;
render() {
return html`
<p>
${this.data?.greeting ?? 'Hello'},
${this.data?.name ?? 'Friend'}
</p>
`;
}
}
예
다음 예시 앱을 확인하세요.
leeway은 실시간 업데이트
launchctl 비공식spacex.land API
앱 생성기
순식간에 GraphQL 앱 작성을 시작하고 싶으십니까? 새로운 앱 생성기를 사용해 보세요
npm init @apollo-elements
따라서 충돌 소파에 끈을 묶고 주스가 나오는 것을 느끼십시오. 이제 Apollo Elements으로 GraphQL 게이트를 지나칠 때입니다.
Reference
이 문제에 관하여(Apollo Elements 3를 사용하여 GraphQL을 궤도에 올리십시오.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bennypowers/take-graphql-into-orbit-with-apollo-elements-3-5hkd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)