{"id":2601,"date":"2024-04-19T12:39:23","date_gmt":"2024-04-19T16:39:23","guid":{"rendered":"http:\/\/andrewpallant.ca\/wordpress\/?p=2601"},"modified":"2024-04-19T12:53:12","modified_gmt":"2024-04-19T16:53:12","slug":"what-is-jira-query-language-jql","status":"publish","type":"post","link":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/","title":{"rendered":"What is Jira Query Language (JQL)?"},"content":{"rendered":"\n<p class=\"has-small-font-size\">Jira Query Language (JQL) is a text-based query language used to extract specific data from the Jira database. Jira is a swamp of tickets that can weigh you down in the mud of ambiguity, but JQL can help you navigate once you know the syntax. With JQL, you can create structured queries to retrieve the desired issues based on various criteria.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">Why Is JQL Essential?<\/h3>\n\n\n\n<ol>\n<li class=\"has-small-font-size\"><strong>Search for Issues<\/strong>: Use JQL to search for issues based on project name, issue type, status, assignee, priority, and more.<br><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Operators and Functions<\/strong>: JQL supports a range of operators to compare values, combine conditions, and perform text matching.<br><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Agile Project Management<\/strong>: JQL is particularly valuable for agile teams, as it maintains clarity and alignment among team members and stakeholders.<br><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Quick Access to Information<\/strong>: JQL enables quick access to relevant information, allowing you to focus on essential tasks.<\/li>\n<\/ol>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Examples of Basic JQL Queries:<\/h2>\n\n\n\n<ol>\n<li class=\"has-small-font-size\"><strong>Project-Based Query<\/strong>:\n<ul>\n<li>To find all issues in the \u201cMy Project\u201d project: <div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>project = \"My Project\"<\/code><\/div><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Assignee Query<\/strong>:\n<ul>\n<li>To retrieve issues assigned to the currently logged-in user:<div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>assignee = currentUser()<\/code><\/div><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Status Query<\/strong>:\n<ul>\n<li>To get issues with the status \u201cIn Progress\u201d:<div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>status = \"In Progress\"<\/code><\/div><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Examples of More Complex JQL Queries:<\/h2>\n\n\n\n<ol>\n<li class=\"has-small-font-size\"><strong><strong>Complex User-Related Query<\/strong><\/strong><ul><li>To retrieve child issues from multiple parent links (e.g., parent links with keys EX-000, EX-001, EX-002, EX-003): <div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>Parent Link\" IN (EX-000, EX-001, EX-002, EX-003)<\/code><\/div><div>This query will return all child issues associated with the specified parent links.<\/div><\/li><\/ul><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Child Issues Query<\/strong>:<ul><li>To get all child issues below a specific epic (e.g., epic key INIT-00) regardless of their hierarchy level:  <div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\">issue in linkedIssues(INIT-00, &#8220;is Epic of&#8221;) <\/div><div>This query ensures you retrieve all child issues, even if nested within other epics or stories.<\/div><\/li><\/ul><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong><strong>Complex User-Related Query<\/strong><\/strong><ul><li>To find all issues in the \u201cTEST\u201d project where the assignee is the currently logged-in user:  <div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\">project = &#8220;TEST&#8221; AND assignee = currentUser()<\/div><div>This query combines the project field, the EQUALS operator, the value \u201cTEST,\u201d the AND keyword, and the&nbsp;<code>currentUser()<\/code>&nbsp;function.<\/div><\/li><\/ul><\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Using Atlassian Intelligence (AI) for JQL:<\/h2>\n\n\n\n<p class=\"has-small-font-size\">Atlassian Intelligence (AI) is a virtual teammate integrated into Jira Cloud products. It translates your natural language queries into JQL code, making it easier to search for issues. Here\u2019s how to use it:<\/p>\n\n\n\n<ol>\n<li class=\"has-small-font-size\">Go to the issue navigator in your Jira project.<\/li>\n\n\n\n<li class=\"has-small-font-size\">Select the AI option next to the search bar.<\/li>\n\n\n\n<li class=\"has-small-font-size\">Type your query in simple language (e.g., \u201cEpics labelled XYZ\u201d).<\/li>\n\n\n\n<li class=\"has-small-font-size\">Click \u201cGo\u201d to have AI translate it into JQL.<\/li>\n<\/ol>\n\n\n\n<p class=\"has-small-font-size\">AI works best when:<\/p>\n\n\n\n<ul>\n<li class=\"has-small-font-size\">You\u2019re querying using issue fields available in your Jira project.<\/li>\n\n\n\n<li class=\"has-small-font-size\">The query has specific fields and values to narrow down your search.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Using Copilot for Generating JQL:<\/h2>\n\n\n\n<p class=\"has-small-font-size\">Copilot is a great tool for generating scripts using languages like JQL. To use it, all you need to do is ask for what you need in plain English. It&#8217;s easy to get started with any AI, and you&#8217;ll learn as you go. Don&#8217;t be afraid, as you really can&#8217;t mess anything up.<br><br><strong>Sample Prompt:<\/strong><\/p>\n\n\n\n<div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>write me a jql script for jira cloud to find bug tickets created on 2024-04-19 with the text \"file type\" in project \"project-x\" ordered by date created<\/code><\/div>\n\n\n\n<p class=\"has-small-font-size\"><strong>Output<\/strong>:<\/p>\n\n\n\n<div style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>project = \"project-x\" AND issuetype = bug AND created &gt;= 2024-04-19 AND created &lt;= 2024-04-19 AND text ~ \"file type\" ORDER BY created ASC<\/code><\/div>\n\n\n\n<p>To execute the JQL query in Jira Cloud, follow these steps:<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">To execute the JQL query in Jira Cloud, follow these steps:<\/h2>\n\n\n\n<ol>\n<li class=\"has-small-font-size\"><strong>Log in to your Jira Cloud account<\/strong>: Open your web browser and navigate to your Jira Cloud instance. Log in using your credentials.<br><\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Navigate to the Issue Search page<\/strong>:\n<ul>\n<li>Click on the \u201cSearch\u201d icon (usually represented by a magnifying glass) in the top navigation bar.<\/li>\n\n\n\n<li>Select \u201cAdvanced search\u201d from the dropdown menu.<br><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Enter the JQL query<\/strong>:\n<ul>\n<li>In the \u201cAdvanced search\u201d page, you\u2019ll see a text box where you can enter your JQL query.<\/li>\n\n\n\n<li>Copy and paste the following query into that box:<br><span style=\"padding:3px; border: 1px #ccc solid; background: #eee; font-size: 10pt;margin: 10px;\"><code>project = \"project-x\" AND issuetype = bug AND created >= 2024-04-19 AND created &lt;= 2024-04-19 AND text ~ \"file type\" ORDER BY created ASC <\/code>Replace\u00a0<code>\"project-x\"<\/code><\/span>\u00a0with the actual name of your project.<br><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Run the search<\/strong>:\n<ul>\n<li>Click the \u201cSearch\u201d button to execute the query.<\/li>\n\n\n\n<li>Jira will display the search results based on the criteria specified in your query.<br><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li class=\"has-small-font-size\"><strong>Review the results<\/strong>:\n<ul>\n<li>You\u2019ll see a list of bug tickets that match your search criteria.<\/li>\n\n\n\n<li>The results will be ordered by their creation date in ascending order.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Helpful Resources<\/h2>\n\n\n\n<ul>\n<li class=\"has-small-font-size\"><a href=\"https:\/\/community.atlassian.com\/t5\/Jira-Software-questions\/how-do-i-write-a-jql-query-to-search-bugs-created-in-last-2\/qaq-p\/1804120\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">https:\/\/community.atlassian.com\/t5\/Jira-Software-questions\/how-do-i-write-a-jql-query-to-search-bugs-created-in-last-2\/qaq-p\/1804120<\/a><\/li>\n\n\n\n<li class=\"has-small-font-size\"><a href=\"https:\/\/community.atlassian.com\/t5\/Jira-Software-questions\/JQL-to-find-tickets-created-quot-yesterday-quot-last-working-day\/qaq-p\/1782461\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">https:\/\/community.atlassian.com\/t5\/Jira-Software-questions\/JQL-to-find-tickets-created-quot-yesterday-quot-last-working-day\/qaq-p\/1782461<\/a><\/li>\n\n\n\n<li class=\"has-small-font-size\"><a href=\"https:\/\/stackoverflow.com\/questions\/8362323\/how-do-i-query-jira-to-search-for-all-issues-that-have-been-resolved-within-a-le\" target=\"_blank\" rel=\"noreferrer noopener\">https:<\/a><a href=\"https:\/\/stackoverflow.com\/questions\/8362323\/how-do-i-query-jira-to-search-for-all-issues-that-have-been-resolved-within-a-le\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">\/<\/a><a href=\"https:\/\/stackoverflow.com\/questions\/8362323\/how-do-i-query-jira-to-search-for-all-issues-that-have-been-resolved-within-a-le\" target=\"_blank\" rel=\"noreferrer noopener\">\/stackoverflow.com\/questions\/8362323\/how-do-i-query-jira-to-search-for-all-issues-that-have-been-resolved-within-a-le<\/a><\/li>\n\n\n\n<li class=\"has-small-font-size\"><a href=\"https:\/\/community.atlassian.com\/t5\/App-Central\/How-to-filter-issues-by-dates\/ba-p\/1706097\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/community.atlassian.com\/t5\/App-Central\/How-to-<\/a><a href=\"https:\/\/community.atlassian.com\/t5\/App-Central\/How-to-filter-issues-by-dates\/ba-p\/1706097\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">filter<\/a><a href=\"https:\/\/community.atlassian.com\/t5\/App-Central\/How-to-filter-issues-by-dates\/ba-p\/1706097\" target=\"_blank\" rel=\"noreferrer noopener\">-issues-by-dates\/ba-p\/1706097<\/a><\/li>\n\n\n\n<li class=\"has-small-font-size\"><a href=\"https:\/\/community.atlassian.com\/t5\/Jira-questions\/Jira-filter-for-Business-days\/qaq-p\/1079012\" rel=\"nofollow\">https:\/\/community.atlassian.com\/t5\/Jira-questions\/Jira<\/a><a href=\"https:\/\/community.atlassian.com\/t5\/Jira-questions\/Jira-filter-for-Business-days\/qaq-p\/1079012\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">&#8211;<\/a><a href=\"https:\/\/community.atlassian.com\/t5\/Jira-questions\/Jira-filter-for-Business-days\/qaq-p\/1079012\" rel=\"nofollow\">filter-for-Business-days\/qaq-p\/1079012<\/a><\/li>\n\n\n\n<li class=\"has-small-font-size\"><a href=\"https:\/\/support.atlassian.com\/jira-software-cloud\/docs\/save-your-search-as-a-filter\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/support.atlassian.com\/jira-software-cloud\/docs<\/a><a href=\"https:\/\/support.atlassian.com\/jira-software-cloud\/docs\/save-your-search-as-a-filter\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">\/<\/a><a href=\"https:\/\/support.atlassian.com\/jira-software-cloud\/docs\/save-your-search-as-a-filter\/\" target=\"_blank\" rel=\"noreferrer noopener\">save-your-search-as-a-filter\/<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Jira Query Language (JQL) is a text-based query language used to extract specific data from the Jira database. Jira is a swamp of tickets that can weigh you down in the mud of ambiguity, but JQL can help you navigate once you know the syntax. With JQL, you can create structured queries to retrieve the &hellip; <a href=\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">What is Jira Query Language (JQL)?<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[275,337,36,75,1],"tags":[272,338,408,339,406,407,283,398],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>What is Jira Query Language (JQL)? - LDNDeveloper<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"What is Jira Query Language (JQL)? - LDNDeveloper\" \/>\r\n<meta property=\"og:description\" content=\"Jira Query Language (JQL) is a text-based query language used to extract specific data from the Jira database. Jira is a swamp of tickets that can weigh you down in the mud of ambiguity, but JQL can help you navigate once you know the syntax. With JQL, you can create structured queries to retrieve the &hellip; Continue reading What is Jira Query Language (JQL)?\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\" \/>\r\n<meta property=\"og:site_name\" content=\"LDNDeveloper\" \/>\r\n<meta property=\"article:published_time\" content=\"2024-04-19T16:39:23+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2024-04-19T16:53:12+00:00\" \/>\r\n<meta name=\"author\" content=\"ldnDeveloper\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@LdnDeveloper\" \/>\r\n<meta name=\"twitter:site\" content=\"@LdnDeveloper\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ldnDeveloper\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\"},\"author\":{\"name\":\"ldnDeveloper\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84\"},\"headline\":\"What is Jira Query Language (JQL)?\",\"datePublished\":\"2024-04-19T16:39:23+00:00\",\"dateModified\":\"2024-04-19T16:53:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\"},\"wordCount\":700,\"publisher\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84\"},\"keywords\":[\"AI\",\"Copilot\",\"Issue Tracking\",\"Jira\",\"Jira Query Language (JQL)\",\"Query Language\",\"Software Development\",\"Support Teams\"],\"articleSection\":[\"AI\",\"Copilot\",\"How To\",\"Skills\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\",\"url\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\",\"name\":\"What is Jira Query Language (JQL)? - LDNDeveloper\",\"isPartOf\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#website\"},\"datePublished\":\"2024-04-19T16:39:23+00:00\",\"dateModified\":\"2024-04-19T16:53:12+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/andrewpallant.ca\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Jira Query Language (JQL)?\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#website\",\"url\":\"http:\/\/andrewpallant.ca\/wordpress\/\",\"name\":\"LDNDeveloper\",\"description\":\"Learning, Growing and Sharing.\",\"publisher\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/andrewpallant.ca\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84\",\"name\":\"ldnDeveloper\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/andrewpallant.ca\/wordpress\/wp-content\/uploads\/2017\/05\/cropped-AAEAAQAAAAAAAAXQAAAAJDQxMGRlMzFjLWM4ODctNDk1NC05M2EyLWE1NDNhNTRiZjVlYw-2.jpg\",\"contentUrl\":\"https:\/\/andrewpallant.ca\/wordpress\/wp-content\/uploads\/2017\/05\/cropped-AAEAAQAAAAAAAAXQAAAAJDQxMGRlMzFjLWM4ODctNDk1NC05M2EyLWE1NDNhNTRiZjVlYw-2.jpg\",\"width\":512,\"height\":512,\"caption\":\"ldnDeveloper\"},\"logo\":{\"@id\":\"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/image\/\"},\"description\":\"Andrew Pallant (@LdnDeveloper) has been a web, database and desktop developer for over 16 years. Andrew has worked on projects that ranged from factory automation to writing business applications. Most recently he has been heavily involved in various forms for ecommerce projects. Over the years Andrew has worn many hats: Project Manager, IT Manager, Lead Developer, Supervisor of Developers and many more - See more at: http:\/\/www.unlatched.com\/#sthash.8DiTkpKy.dpuf\",\"sameAs\":[\"http:\/\/www.andrewpallant.ca\",\"https:\/\/x.com\/LdnDeveloper\"],\"url\":\"http:\/\/andrewpallant.ca\/wordpress\/author\/ldndeveloper\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Jira Query Language (JQL)? - LDNDeveloper","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":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/","og_locale":"en_US","og_type":"article","og_title":"What is Jira Query Language (JQL)? - LDNDeveloper","og_description":"Jira Query Language (JQL) is a text-based query language used to extract specific data from the Jira database. Jira is a swamp of tickets that can weigh you down in the mud of ambiguity, but JQL can help you navigate once you know the syntax. With JQL, you can create structured queries to retrieve the &hellip; Continue reading What is Jira Query Language (JQL)?","og_url":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/","og_site_name":"LDNDeveloper","article_published_time":"2024-04-19T16:39:23+00:00","article_modified_time":"2024-04-19T16:53:12+00:00","author":"ldnDeveloper","twitter_card":"summary_large_image","twitter_creator":"@LdnDeveloper","twitter_site":"@LdnDeveloper","twitter_misc":{"Written by":"ldnDeveloper","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#article","isPartOf":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/"},"author":{"name":"ldnDeveloper","@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84"},"headline":"What is Jira Query Language (JQL)?","datePublished":"2024-04-19T16:39:23+00:00","dateModified":"2024-04-19T16:53:12+00:00","mainEntityOfPage":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/"},"wordCount":700,"publisher":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84"},"keywords":["AI","Copilot","Issue Tracking","Jira","Jira Query Language (JQL)","Query Language","Software Development","Support Teams"],"articleSection":["AI","Copilot","How To","Skills"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/","url":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/","name":"What is Jira Query Language (JQL)? - LDNDeveloper","isPartOf":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/#website"},"datePublished":"2024-04-19T16:39:23+00:00","dateModified":"2024-04-19T16:53:12+00:00","breadcrumb":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/andrewpallant.ca\/wordpress\/what-is-jira-query-language-jql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/andrewpallant.ca\/wordpress\/"},{"@type":"ListItem","position":2,"name":"What is Jira Query Language (JQL)?"}]},{"@type":"WebSite","@id":"http:\/\/andrewpallant.ca\/wordpress\/#website","url":"http:\/\/andrewpallant.ca\/wordpress\/","name":"LDNDeveloper","description":"Learning, Growing and Sharing.","publisher":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/andrewpallant.ca\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/f6f5bb1ac3e0c5a54a8b5ce35fd67b84","name":"ldnDeveloper","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/andrewpallant.ca\/wordpress\/wp-content\/uploads\/2017\/05\/cropped-AAEAAQAAAAAAAAXQAAAAJDQxMGRlMzFjLWM4ODctNDk1NC05M2EyLWE1NDNhNTRiZjVlYw-2.jpg","contentUrl":"https:\/\/andrewpallant.ca\/wordpress\/wp-content\/uploads\/2017\/05\/cropped-AAEAAQAAAAAAAAXQAAAAJDQxMGRlMzFjLWM4ODctNDk1NC05M2EyLWE1NDNhNTRiZjVlYw-2.jpg","width":512,"height":512,"caption":"ldnDeveloper"},"logo":{"@id":"http:\/\/andrewpallant.ca\/wordpress\/#\/schema\/person\/image\/"},"description":"Andrew Pallant (@LdnDeveloper) has been a web, database and desktop developer for over 16 years. Andrew has worked on projects that ranged from factory automation to writing business applications. Most recently he has been heavily involved in various forms for ecommerce projects. Over the years Andrew has worn many hats: Project Manager, IT Manager, Lead Developer, Supervisor of Developers and many more - See more at: http:\/\/www.unlatched.com\/#sthash.8DiTkpKy.dpuf","sameAs":["http:\/\/www.andrewpallant.ca","https:\/\/x.com\/LdnDeveloper"],"url":"http:\/\/andrewpallant.ca\/wordpress\/author\/ldndeveloper\/"}]}},"_links":{"self":[{"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/posts\/2601"}],"collection":[{"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/comments?post=2601"}],"version-history":[{"count":3,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/posts\/2601\/revisions"}],"predecessor-version":[{"id":2606,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/posts\/2601\/revisions\/2606"}],"wp:attachment":[{"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/media?parent=2601"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/categories?post=2601"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/andrewpallant.ca\/wordpress\/wp-json\/wp\/v2\/tags?post=2601"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}