You can now return an item or board’s URL by querying the url field. This field is available on both boards and items objects in API versions 2024-04 and later.
query {
boards (ids: 1234567890) {
name
url
}
}
query {
items (ids: [1234567890, 9876543210, 2345678901]) {
name
url
}
}

