{"data":{"allCodeExample":{"nodes":[{"name":"example","language":"cs","path":"example.cs","content":"using System; \n\nnamespace HelloWorld { \n  class Starter { \n    static void Main(string[] args) { \n      Console.WriteLine(\"Hello World!\"); \n    } \n  } \n} "},{"name":"example","language":"console","path":"example.console","content":"cd project\ncp -R \\\n  dist \\\n  public/\nrm -rf dist\nyarn start"},{"name":"example","language":"curl","path":"example.curl","content":"curl --request POST \\\n  --url https://api.sendgrid.com/v3/mail/send \\\n  --header 'Authorization: Bearer YOUR_API_KEY' \\\n  --header 'Content-Type: application/json' \\\n  --data '{\"personalizations\": [{\"to\": [{\"email\": \"recipient@example.com\"}]}],\"from\": {\"email\": \"sendeexampexample@example.com\"},\"subject\": \"Hello, World!\",\"content\": [{\"type\": \"text/plain\", \"value\": \"Heya!\"}]}'"},{"name":"example","language":"graphql","path":"example.graphql","content":"type Person {\n  id: ID!\n  name: String!\n  age: Int\n} "},{"name":"example","language":"js","path":"example.js","content":"// Arrow function sample\nconst arrowFuncSample = () => {\n  console.log('this is an arrow function example');\n};\n"},{"name":"example","language":"java","path":"example.java","content":"public class MyClass {\n  public static void main(String[] args) {\n    System.out.println(\"Hello World\");\n  }\n}\n"},{"name":"example","language":"php","path":"example.php","content":"<!DOCTYPE html>\n<html>\n  <head>\n    <title>Hello World Example</title>\n  </head>\n  <body>\n    <?php\n      echo \"Hello world!\";\n    ?>\n  </body>\n</html>"},{"name":"example","language":"ts","path":"example.ts","content":"function sayHello(name: string) {\n  console.log(`Hello ${name}`);\n}\n"},{"name":"example","language":"json","path":"example.json","content":"{\n  \"petType\": \"Tarantula\",\n  \"name\": \"Squishy\"\n}"},{"name":"example","language":"scala","path":"example.scala","content":"object HelloWorld {\n  def main(args: Array[String]) {\n    println(\"Hello, world!\")\n  }\n}"},{"name":"example","language":"sh","path":"example.sh","content":"#!/bin/sh\n\necho Hello World"},{"name":"example","language":"yml","path":"example.yml","content":"- title: Menu\n  pages:\n    - title: Home\n      path: /home\n    - title: About\n      path: /about\n    - title: Products\n      path: /products\n    - title: Contact\n      path: /contact\n"}]}}}