Background and Research
GraphComment is fantastic, but, at least for now, their documentation is pretty scarce and doesn't help much if you're looking to use GraphComment in anything but the most standard scenario. For my part, I wanted to get GraphComment working on the very cool Zvikov theme - but this theme makes use of swiper, a js component that enables you to "swipe" between posts (among other things). This presents two problems:
- As the posts are loaded using js, no js that is included in the post is ever executed
- GraphComment expects there to be a
<div id="graphcomment"></div>
somewhere on the page, but of course if you wish to include more than one commenting areas you will get duplicated ID-s
So after diving into their rudimentary javascript source (thank God it's not minified!) I was able to make some headway.
The self-executing part of their script looks like this:
The key here is that their initialization routine can be called with parameters! Great! Why they don't let their users know in the "documentation" confounds me.
gc_params can contain the following:
The interesting part here is that you can pass a target as well as the url and page_title manually!
tldr;
Code Injection
Add the following to the "Site Header" box on your code injection page (in your Ghost admin area):
Make sure to replace YOUR_GRAPHCOMMENT_ID
with your actual graphcomment ID. Log into your GraphComments admin panel to get your ID:

Container DIV
Add a container div somewhere on your page (or .hbs template) as follows:
If you use the above, the ID of the div will be set to the slug of your post. You are also setting the page title and url as data-attributes.
Javascript
Now you are able to instantiate as many GraphComment instances on your page as you wish using something like this (paste it in your page directly):
Alternatively, call window.postLoaded('slug');
from any script, making sure to pass the appropriate "slug". For example, if your graphcomment div's ID is "graphcomment-polkadots" then you should call window.postLoaded('polkadots');
Best of luck!