{"id":8024,"date":"2024-07-13T21:17:35","date_gmt":"2024-07-13T15:47:35","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8024"},"modified":"2024-09-25T16:54:47","modified_gmt":"2024-09-25T11:24:47","slug":"building-a-project-with-nodejs-typescript-express-graphql-and-mongodb","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/","title":{"rendered":"1. Building a  Project with NodeJs, Typescript, Express, GraphQL  and MongoDB"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p><strong><u>Creating Node project with Express, MongoDB, Typescript &amp; GraphQL <\/u><\/strong>involves several steps. Lets discuss them in detail as follows:<br><strong>Prerequisites:<\/strong><br>Before getting into the steps to create a node project, let&#8217;s make sure the system is installed with node , VS Code, and Mongo DB softwares.<strong><u><br><\/u><br>Step 1 : Create the server folder and navigate into it.<br><\/strong>mkdir server<br>cd server<\/p>\n\n\n\n<p><strong>Step 2: Initialize the project<br><\/strong>yarn init -y<strong><br><br>Step-3 : Install all packages with typescript dependencies<br><\/strong>yarn add express graphql express-graphql mongoose dotenv mongodb cors<\/p>\n\n\n\n<p>yarn add typescript ts-node @types\/node @types\/express @types\/graphql @types\/mongoose @types\/dotenv&nbsp; @types\/mongodb -D<br><br><strong>Step 4: Setup config.ts file in the project root folder:<br><\/strong>{<\/p>\n\n\n\n<p>&nbsp; &#8220;compilerOptions&#8221;: {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;target&#8221;: &#8220;ES6&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;module&#8221;: &#8220;commonjs&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;strict&#8221;: true,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;esModuleInterop&#8221;: true,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;skipLibCheck&#8221;: true,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;forceConsistentCasingInFileNames&#8221;: true,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;outDir&#8221;: &#8220;.\/dist&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;rootDir&#8221;: &#8220;.\/src&#8221;<\/p>\n\n\n\n<p>&nbsp; },<\/p>\n\n\n\n<p>&nbsp; &#8220;include&#8221;: [&#8220;src&#8221;],<\/p>\n\n\n\n<p>&nbsp; &#8220;exclude&#8221;: [&#8220;node_modules&#8221;]<\/p>\n\n\n\n<p>}<br><br><br><strong>Step 5: Setup .env file in the project root folder<br><\/strong>MONGO_URI=mongodb:\/\/localhost:27017\/mydatabase<\/p>\n\n\n\n<p>PORT=4000<br><br><strong>Step 6: Create folders &amp; files under the project root<br><\/strong>mkdir src<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch src\/index.ts src\/database.ts src\/schema.ts src\/models\/User.ts<br><br><strong>Step 7: create database.ts file for DB connection<br><br><\/strong>import express from 'express';<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">import dotenv from 'dotenv';<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">import connectDB from '.\/database';<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">dotenv.config();<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">const app = express();<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">const port = process.env.PORT || 4000;<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">connectDB();<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">app.listen(port, () =&gt; {<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">&nbsp; console.log(`Server is running at http:\/\/localhost:${port}\/graphql`);<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">});<br><br><strong>Step 8: Update package.json<\/strong><br><br>\u00a0 \"scripts\": {<\/pre>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;start&#8221;: &#8220;nodemon &#8211;exec ts-node src\/index.ts&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;build&#8221;: &#8220;tsc&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &#8220;test&#8221;: &#8220;jest&#8221;<\/p>\n\n\n\n<p>\u00a0 },<br><strong>Step 9:  Create models, schemas, resolvers and update them in index.ts file:<br><\/strong>import express from &#8220;express&#8221;;<\/p>\n\n\n\n<p>import dotenv from &#8220;dotenv&#8221;;<\/p>\n\n\n\n<p>import connectDB from &#8220;.\/databse&#8221;;<\/p>\n\n\n\n<p>import { ApolloServer } from &#8220;apollo-server-express&#8221;;<\/p>\n\n\n\n<p>import usertypeDefs from &#8220;.\/schema\/userschema&#8221;;<\/p>\n\n\n\n<p>import userresolvers from &#8220;.\/resolvers\/userResolvers&#8221;;<\/p>\n\n\n\n<p>import UserModel from &#8220;.\/models\/usermodel&#8221;;<\/p>\n\n\n\n<p>dotenv.config();<\/p>\n\n\n\n<p>connectDB();<\/p>\n\n\n\n<p>const startServer = async () =&gt; {<\/p>\n\n\n\n<p>&nbsp; const app = express();<\/p>\n\n\n\n<p>&nbsp; const server = new ApolloServer({<\/p>\n\n\n\n<p>&nbsp; &nbsp; typeDefs: [usertypeDefs],<\/p>\n\n\n\n<p>&nbsp; &nbsp; resolvers: [userresolvers],<\/p>\n\n\n\n<p>&nbsp; &nbsp; context: {<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; UserModel,<\/p>\n\n\n\n<p>&nbsp; &nbsp; },<\/p>\n\n\n\n<p>&nbsp; });<\/p>\n\n\n\n<p>&nbsp; await server.start();<\/p>\n\n\n\n<p>&nbsp; server.applyMiddleware({ app });<\/p>\n\n\n\n<p>&nbsp; var PORT = process.env.PORT;<\/p>\n\n\n\n<p>&nbsp; app.listen(PORT, () =&gt; {<\/p>\n\n\n\n<p>&nbsp; &nbsp; console.log(`Server running at http:\/\/localhost:${PORT}`);<\/p>\n\n\n\n<p>&nbsp; });<\/p>\n\n\n\n<p>};<\/p>\n\n\n\n<p>startServer();<\/p>\n\n\n\n<p><strong>Step 10:<\/strong> <strong>Run the project<br><\/strong>yarn start<\/p>\n\n\n\n<p>Hence, the project gets started and we could see the mongodb connection and server running on port in the console message.<strong><br><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating Node project with Express, MongoDB, Typescript &amp; GraphQL involves several steps. Lets discuss them in detail as follows:Prerequisites:Before getting into the steps to create a node project, let&#8217;s make sure the system is installed with node , VS Code, and Mongo DB softwares.Step 1 : Create the server folder&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">1. Building a  Project with NodeJs, Typescript, Express, GraphQL  and MongoDB<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":503,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[351,628],"tags":[],"class_list":{"0":"post-8024","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-javascript","7":"category-node-js","8":"h-entry","10":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Creating Node project with Express, MongoDB, Typescript &amp; GraphQL involves several steps. Lets discuss them in detail as follows:Prerequisites:Before getting into the steps to create a node project, let&#8217;s make sure the system is installed with node , VS Code, and Mongo DB softwares.Step 1 : Create the server folder&hellip; Continue Reading 1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-13T15:47:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-25T11:24:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Brindha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brindha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/\"},\"author\":{\"name\":\"Brindha\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/32dac30adb7fda20718df787cd6572f9\"},\"headline\":\"1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB\",\"datePublished\":\"2024-07-13T15:47:35+00:00\",\"dateModified\":\"2024-09-25T11:24:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/\"},\"wordCount\":349,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"articleSection\":[\"Javascript\",\"NODE JS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-07-13T15:47:35+00:00\",\"dateModified\":\"2024-09-25T11:24:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/32dac30adb7fda20718df787cd6572f9\",\"name\":\"Brindha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g\",\"caption\":\"Brindha\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/brindha\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Creating Node project with Express, MongoDB, Typescript &amp; GraphQL involves several steps. Lets discuss them in detail as follows:Prerequisites:Before getting into the steps to create a node project, let&#8217;s make sure the system is installed with node , VS Code, and Mongo DB softwares.Step 1 : Create the server folder&hellip; Continue Reading 1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB","og_url":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-07-13T15:47:35+00:00","article_modified_time":"2024-09-25T11:24:47+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Brindha","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Brindha","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/"},"author":{"name":"Brindha","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/32dac30adb7fda20718df787cd6572f9"},"headline":"1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB","datePublished":"2024-07-13T15:47:35+00:00","dateModified":"2024-09-25T11:24:47+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/"},"wordCount":349,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"articleSection":["Javascript","NODE JS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/","url":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-07-13T15:47:35+00:00","dateModified":"2024-09-25T11:24:47+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/building-a-project-with-nodejs-typescript-express-graphql-and-mongodb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"1. Building a Project with NodeJs, Typescript, Express, GraphQL and MongoDB"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/32dac30adb7fda20718df787cd6572f9","name":"Brindha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f3f7caf582852829d9231b58b1558593887b4e0bb7bbce137b5a469780ebb87?s=96&r=g","caption":"Brindha"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/brindha\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-25q","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8024","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/503"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8024"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8024\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}