{"id":46593,"date":"2019-08-14T00:00:00","date_gmt":"2019-08-14T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/nodejs-client\/"},"modified":"2025-11-13T12:54:48","modified_gmt":"2025-11-13T20:54:48","slug":"nodejs-client","status":"publish","type":"post","link":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/","title":{"rendered":"NodeJS Client"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>\nSome time last year we released our original <a href=\"\/en\/blog\/getting-started-with-the-griddb-nodejs-client\/\">Node.js blog<\/a>. If you go back and read that blog, you&#8217;ll notice that it requires tons of building from source, and though there&#8217;s nothing wrong with compiling, it does add inherent time to developing &#8212; of which I consider to be of the &#8220;less-is-better&#8221; variety. This is the exact reason the GridDB Team has released the GridDB Node.js client onto the <a href=\"https:\/\/www.npmjs.com\/\">node package manager<\/a>; you can find the specific GridDB package here: <a href=\"https:\/\/www.npmjs.com\/package\/griddb_node\">GridDB_Node<\/a>\n<\/p>\n<p> If you prefer to watch a video, you can take a look here: <\/p>\n<p><iframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/9V780gm28aQ\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/p>\n<h2>Installation<\/h2>\n<p>\n    The GridDB c_client (a preqrequisite to using the Nodejs package) can be found here: <a href=\"https:\/\/github.com\/griddb\/c_client\">https:\/\/github.com\/griddb\/c_client<\/a>. As with our Node.js package, the c_client too has been simplified. Instead of compiling from source yourself, there is now an RPM available for your convenience (<a href=\"https:\/\/github.com\/griddb\/c_client\/releases\">the releases page can be found here<\/a>). So to get started simply <code> wget<\/code> the latest RPM and install.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ wget \nhttps:\/\/github.com\/griddb\/c_client\/releases\/download\/v4.2.0\/griddb_c_client-4.2.0-1.linux.x86_64.rpm<\/code><\/pre>\n<\/p><\/div>\n<p>    then we need to actually install the rpm<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ sudo rpm -ivh griddb_c_client-4.2.0-1.linux.x86_64.rpm<\/code><\/pre>\n<\/p><\/div>\n<p>    and now the c_client is installed and ready in your <code>\/usr\/<\/code> directory. That was easy!\n<\/p>\n<p>\n    Now that the node package manager installs our Nodejs client for us, it will also be a very easy install. If you&#8217;re starting from scratch, just make a new dir and <code>npm init<\/code>. This should handle the basic scaffolding for your project and make a <code> node_modules<\/code> directory. Once it&#8217;s done, it&#8217;s simply a matter of: <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ npm i griddb_node<\/code><\/pre>\n<\/p><\/div>\n<p>    and now you&#8217;ve got the GridDB Node.js client installed and ready for use.\n<\/p>\n<p>\n    One small caveat, though, is that the client requires Node.js version 10. If you&#8217;re using a different version for a different project or something more bleeding edge, I would recommend you to use <a href=\"https:\/\/github.com\/nvm-sh\/nvm\">nvm<\/a>. The Node Version Manager is a bash script to help you manage several versions of Node.js. Since we currently need version 10, for example, we would: <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ nvm install 10.16<\/code><\/pre>\n<\/p><\/div>\n<p>    and then <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ nvm use 10.16<\/code><\/pre>\n<\/p><\/div>\n<p>    simply confirm you did it right: <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ node -v<\/code><\/pre>\n<\/p><\/div>\n<pre> v10.16.0 <\/pre>\n<p>    perfect.\n<\/p>\n<p>\n    And now we&#8217;re almost ready to begin using our favorite language <code> JavaScript<\/code> with GridDB. The last step is to point our <code>LD_LIBRARY<\/code> to our c_client installation.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:\/usr\/griddb_c_client-4.2-0\/lib\/<\/code><\/pre>\n<\/p><\/div>\n<p>    And we can now officially run <code> JavaScript<\/code> with our GridDB cluster.\n<\/p>\n<h2> Usage <\/h2>\n<p>\n    To use the client, simply import the griddb library into your program<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">const griddb = require('griddb_node');\nconst fs = require('fs');<\/code><\/pre>\n<\/p><\/div>\n<p>    To define your actual cluster, it looks like this: <\/p>\n<pre>const factory = griddb.StoreFactory.getInstance();\n        const store = factory.getStore({\n            \"host\": '239.0.0.1',\n            \"port\": 31999,\n            \"clusterName\": \"defaultCluster\",\n            \"username\": \"admin\",\n            \"password\": \"admin\"\n        });<\/pre>\n<p>    Making containers and defining their schema is easy too (collection container): <\/p>\n<pre>const colConInfo = new griddb.ContainerInfo({\n            'name': \"Person\",\n            'columnInfoList': [\n                [\"name\", griddb.Type.STRING],\n                [\"age\", griddb.Type.INTEGER],\n            ],\n            'type': griddb.ContainerType.COLLECTION, 'rowKey': true\n        });<\/pre>\n<p>    Time Series container: <\/p>\n<pre>var timeConInfo = new griddb.ContainerInfo({\n        'name': \"HeartRate\",\n        'columnInfoList': [\n            [\"timestamp\", griddb.Type.TIMESTAMP],\n            [\"heartRate\", griddb.Type.INTEGER],\n            [\"activity\", griddb.Type.STRING]\n        ],\n        'type': griddb.ContainerType.TIME_SERIES, 'rowKey': true\n    });<\/pre>\n<p>    And then to actually put data into your container (and then query), it looks like this: <\/p>\n<pre>let time_series;\n        store.putContainer(timeConInfo, false)\n            .then(ts => {\n                time_series = ts;\n                return ts.put([new Date(), 60, 'resting']);\n            })\n            .then(() => {\n                query = time_series.query(\"select * where timestamp > TIMESTAMPADD(HOUR, NOW(), -6)\");\n                return query.fetch();\n            })\n            .then(rowset => {\n                while (rowset.hasNext()) {\n                    var row = rowset.next();\n                    console.log(\"Time =\", row[0], \"Heart Rate =\", row[1].toString(), \"Activity =\", row[2]);\n                }\n            })\n            .catch(err => {\n                if (err.constructor.name == \"GSException\") {\n                    for (var i = 0; i < err.getErrorStackSize(); i++) {\n                        console.log(\"[\", i, \"]\");\n                        console.log(err.getErrorCode(i));\n                        console.log(err.getMessage(i));\n                    }\n                } else {\n                    console.log(err);\n                }\n            });<\/pre>\n<\/p>\n<h2> Conclusion<\/h2>\n<p>\n    Now that the entire process of getting up and running with Node.js has been streamlined a bit, we hope to see some more projects out there utilizing Node.js. If you would like to see the entire source code used in the usage section, please download the source file from here:<a  data-e-Disable-Page-Transition=\"true\" class=\"download-link\" title=\"\" href=\"https:\/\/griddb.net\/en\/download\/26126\/?tmstv=1775642203\" rel=\"nofollow\" id=\"download-link-26126\" data-redirect=\"false\" >\n\tnode.js source example\t(2954 downloads\t)\n<\/a>\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you&#8217;ll notice that it requires tons of building from source, and though there&#8217;s nothing wrong with compiling, it does add inherent time to developing &#8212; of which I consider to be of the &#8220;less-is-better&#8221; variety. This [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":25791,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46593","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>NodeJS Client | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you&#039;ll notice that it requires tons of building\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NodeJS Client | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you&#039;ll notice that it requires tons of building\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-14T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb.net\/wp-content\/uploads\/2018\/07\/blog_title_28.png\" \/>\n\t<meta property=\"og:image:width\" content=\"870\" \/>\n\t<meta property=\"og:image:height\" content=\"490\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Israel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Israel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\"},\"author\":{\"name\":\"Israel\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\"},\"headline\":\"NodeJS Client\",\"datePublished\":\"2019-08-14T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\"},\"wordCount\":475,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/07\/blog_title_28.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\",\"name\":\"NodeJS Client | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/07\/blog_title_28.png\",\"datePublished\":\"2019-08-14T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:48+00:00\",\"description\":\"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you'll notice that it requires tons of building\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2018\/07\/blog_title_28.png\",\"contentUrl\":\"\/wp-content\/uploads\/2018\/07\/blog_title_28.png\",\"width\":870,\"height\":490},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\",\"name\":\"Israel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"caption\":\"Israel\"},\"url\":\"https:\/\/griddb.net\/en\/author\/israel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"NodeJS Client | GridDB: Open Source Time Series Database for IoT","description":"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you'll notice that it requires tons of building","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:\/\/griddb.net\/en\/blog\/nodejs-client\/","og_locale":"en_US","og_type":"article","og_title":"NodeJS Client | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you'll notice that it requires tons of building","og_url":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2019-08-14T07:00:00+00:00","article_modified_time":"2025-11-13T20:54:48+00:00","og_image":[{"width":870,"height":490,"url":"https:\/\/griddb.net\/wp-content\/uploads\/2018\/07\/blog_title_28.png","type":"image\/png"}],"author":"Israel","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Israel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/"},"author":{"name":"Israel","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740"},"headline":"NodeJS Client","datePublished":"2019-08-14T07:00:00+00:00","dateModified":"2025-11-13T20:54:48+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/"},"wordCount":475,"commentCount":0,"publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/07\/blog_title_28.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/nodejs-client\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/","url":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/","name":"NodeJS Client | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/07\/blog_title_28.png","datePublished":"2019-08-14T07:00:00+00:00","dateModified":"2025-11-13T20:54:48+00:00","description":"Introduction Some time last year we released our original Node.js blog. If you go back and read that blog, you'll notice that it requires tons of building","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/nodejs-client\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/nodejs-client\/#primaryimage","url":"\/wp-content\/uploads\/2018\/07\/blog_title_28.png","contentUrl":"\/wp-content\/uploads\/2018\/07\/blog_title_28.png","width":870,"height":490},{"@type":"WebSite","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740","name":"Israel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","caption":"Israel"},"url":"https:\/\/griddb.net\/en\/author\/israel\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46593"}],"version-history":[{"count":1,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46593\/revisions"}],"predecessor-version":[{"id":51278,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46593\/revisions\/51278"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media\/25791"}],"wp:attachment":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}