@tailcallhq/core-linux-x64-musl
Advanced tools
Comparing version 0.18.0 to 0.19.0
@@ -23,3 +23,3 @@ { | ||
"name": "@tailcallhq/core-linux-x64-musl", | ||
"version": "v0.18.0", | ||
"version": "v0.19.0", | ||
"bin": { | ||
@@ -26,0 +26,0 @@ "tailcall": "./bin/tailcall" |
@@ -10,2 +10,5 @@ [![Tailcall](https://raw.githubusercontent.com/tailcallhq/tailcall/main/assets/logo_main.svg)](https://tailcall.run) | ||
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=for-the-badge&logo=x&color=black&labelColor=black)](https://twitter.com/intent/tweet?text=%40tailcallhq%20is%20building%20a%20high-performance%20API%20Orchestration%20solution%20over%20%23GraphQL.%0A%0ACheck%20it%20out%20at%3A%0A%F0%9F%94%97%20https%3A%2F%2Ftailcall.run%20%0A%F0%9F%94%97%20https%3A%2F%2Fgithub.com%2Ftailcallhq%2Ftailcall%20%0A%0A&hashtags=api,http,rest,grpc,graphql,nocode,microservice,opensource) | ||
[![Discord](https://img.shields.io/discord/1044859667798568962?style=for-the-badge&cacheSeconds=120&logo=discord)](https://discord.gg/Q2ZExpFCnA) | ||
[![Open Bounties](https://img.shields.io/endpoint?url=https%3A%2F%2Fconsole.algora.io%2Fapi%2Fshields%2Ftailcallhq%2Fbounties%3Fstatus%3Dopen&style=for-the-badge)](https://console.algora.io/org/tailcallhq/bounties?status=open) | ||
@@ -56,4 +59,32 @@ [![Rewarded Bounties](https://img.shields.io/endpoint?url=https%3A%2F%2Fconsole.algora.io%2Fapi%2Fshields%2Ftailcallhq%2Fbounties%3Fstatus%3Dcompleted&style=for-the-badge)](https://console.algora.io/org/tailcallhq/bounties?status=completed) | ||
[![GraphQL Config Screenshot](https://raw.githubusercontent.com/tailcallhq/tailcall/main/assets/json_placeholder.png)](https://raw.githubusercontent.com/tailcallhq/tailcall/main/examples/jsonplaceholder.graphql) | ||
```graphql | ||
schema | ||
@server(port: 8000, graphiql: true, hostname: "0.0.0.0") | ||
@upstream(baseURL: "http://jsonplaceholder.typicode.com", httpCache: true) { | ||
query: Query | ||
} | ||
type Query { | ||
posts: [Post] @http(path: "/posts") | ||
user(id: Int!): User @http(path: "/users/{{args.id}}") | ||
} | ||
type User { | ||
id: Int! | ||
name: String! | ||
username: String! | ||
email: String! | ||
phone: String | ||
website: String | ||
} | ||
type Post { | ||
id: Int! | ||
userId: Int! | ||
title: String! | ||
body: String! | ||
user: User @http(path: "/users/{{value.userId}}") | ||
} | ||
``` | ||
Now, run the following command to start the server with the full path to the jsonplaceholder.graphql file that you created above. | ||
@@ -60,0 +91,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
20373637
115