Linear + Notion (Get URL, or Get Issue ID)

Hey all!

I am creating a relatively simple scenario;
Notion database is being watched for any items that are created… (I still need to figure out how to let it wait until all item’s properties are filled out) And then it makes a linear ticket. That’s easy! Got it!

And now I am sending that same ticket’s info back to Notion for tracking. I can update status’ etc with ease, but I am unable to find the linear issue URL property, or the issue ID (the correct one). In linear, the ID might be something like {Department Name}-{4-digit number}, but the ID that I’m seeing in Make is a string of 20 numbers/letters. So now, I can’t even manually create the URL using wildcards/mapping.

Am I missing something, or does the Linear module not allow us to see the issue URL? seems so simple.

Hi Corey,

The Linear API returns the issue UUID rather than the human-readable one.

Could you try the “execute a GraphQL query” module with this as per the documentation:

query Issue {
issue(id: “uuid_here”) {
id
title
description
}
}