{"id":862,"date":"2022-08-04T06:47:41","date_gmt":"2022-08-04T06:47:41","guid":{"rendered":"https:\/\/craftcookcode.com\/?p=862"},"modified":"2024-07-10T05:05:46","modified_gmt":"2024-07-10T05:05:46","slug":"the-fake-left-outer-join","status":"publish","type":"post","link":"https:\/\/craftcookcode.com\/?p=862","title":{"rendered":"The Fake LEFT OUTER JOIN"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In my role I review a wide variety of SQL code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Some is highly professional that is above my skill level so I absorb as much learning as I can from it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL held together with sticky tape and don&#8217;t truly comprehend the code that is written.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An example &#8211; I see the following a lot with people who don&#8217;t understand the data and trying to program stability in their code like this:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\nSELECT \n    A.BDATE,\n    A.ID,\n    A.CUST_ID,\n    C.CUSTOMER_NAME,\n    C.PHONE\nFROM dbo.ACCOUNTS A\nLEFT OUTER JOIN dbo.CUSTOMER C\nON   C.BDATE = @DATE\n     C.CUST_ID = A.CUST_ID \nWHERE\n    A.BDATE = @DATE AND\n    A.ACCOUNT_TYPE = &#039;XX&#039;;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">This means if for some reason if there is an integrity problem between ACCOUNTS and CUSTOMER; they will still get the account data on the report.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The problem arises when the business requirement of the report evolve and the developer needs to filters on the left joined table.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For instance &#8211; &#8220;Report on Accounts on type XX but remove deceased customers so we don&#8217;t ring them&#8221;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I quite often see this:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\nSELECT \n    A.BDATE,\n    A.ID,\n    A.CUST_ID,\n    C.CUSTOMER_NAME,\n    C.PHONE\nFROM dbo.ACCOUNTS A\nLEFT OUTER JOIN dbo.CUSTOMER C\nON   C.BDATE = @DATE\n     C.CUST_ID = A.CUST_ID \nWHERE\n    A.BDATE = @DATE AND\n    A.ACCOUNT_TYPE = &#039;XX&#039; \n\n    AND\n\n    C.DECEASED = &#039;N&#039;;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Without knowing it; the developer has broken their &#8220;Get all account XX report&#8221; business rule by turning their LEFT OUTER JOIN into effectively a INNER JOIN.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The correct way to write the query is:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\nSELECT \n    A.BDATE,\n    A.ID,\n    A.CUST_ID,\n    C.CUSTOMER_NAME,\n    C.PHONE\nFROM dbo.ACCOUNTS A\nLEFT OUTER JOIN dbo.CUSTOMER C\nON  C.BDATE = @DATE\n    C.CUST_ID = A.CUST_ID \n\n    -------------------------------- \n    AND\n\n    C.DECEASED = &#039;N&#039;\n    -------------------------------- \nWHERE\n    A.BDATE = @DATE AND\n    A.ACCOUNT_TYPE = &#039;XX&#039; ;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">You can get a good gauge of the skill level of the developer by checking their LEFT OUTER JOINS.&nbsp; If they using them on every join where you know there is integrity between the two data objects; you can have an educated guess that you&#8217;re reviewing a novice developer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where you have to pay extra attention to their joins and where predicates and make them aware of the consequences of the code.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[13,17],"tags":[],"class_list":["post-862","post","type-post","status-publish","format-standard","hentry","category-code","category-sql"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"jonny.donker@gmail.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/craftcookcode.com\/?p=862\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Craft Cook Code - c^3?\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"The Fake LEFT OUTER JOIN - Craft Cook Code\" \/>\n\t\t<meta property=\"og:description\" content=\"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/craftcookcode.com\/?p=862\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-08-04T06:47:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-07-10T05:05:46+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"The Fake LEFT OUTER JOIN - Craft Cook Code\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#blogposting\",\"name\":\"The Fake LEFT OUTER JOIN - Craft Cook Code\",\"headline\":\"The Fake LEFT OUTER JOIN\",\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"},\"datePublished\":\"2022-08-04T06:47:41+00:00\",\"dateModified\":\"2024-07-10T05:05:46+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#webpage\"},\"articleSection\":\"Code, SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/craftcookcode.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"position\":2,\"name\":\"Code\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=17#listItem\",\"name\":\"SQL\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=17#listItem\",\"position\":3,\"name\":\"SQL\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=17\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#listItem\",\"name\":\"The Fake LEFT OUTER JOIN\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#listItem\",\"position\":4,\"name\":\"The Fake LEFT OUTER JOIN\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=17#listItem\",\"name\":\"SQL\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#webpage\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862\",\"name\":\"The Fake LEFT OUTER JOIN - Craft Cook Code\",\"description\":\"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=862#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"datePublished\":\"2022-08-04T06:47:41+00:00\",\"dateModified\":\"2024-07-10T05:05:46+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/\",\"name\":\"Craft Cook Code\",\"description\":\"c^3?\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"The Fake LEFT OUTER JOIN - Craft Cook Code","description":"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL","canonical_url":"https:\/\/craftcookcode.com\/?p=862","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/craftcookcode.com\/?p=862#blogposting","name":"The Fake LEFT OUTER JOIN - Craft Cook Code","headline":"The Fake LEFT OUTER JOIN","author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"publisher":{"@id":"https:\/\/craftcookcode.com\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=862#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"},"datePublished":"2022-08-04T06:47:41+00:00","dateModified":"2024-07-10T05:05:46+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=862#webpage"},"isPartOf":{"@id":"https:\/\/craftcookcode.com\/?p=862#webpage"},"articleSection":"Code, SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/craftcookcode.com\/?p=862#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","position":1,"name":"Home","item":"https:\/\/craftcookcode.com","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","position":2,"name":"Code","item":"https:\/\/craftcookcode.com\/?cat=13","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=17#listItem","name":"SQL"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=17#listItem","position":3,"name":"SQL","item":"https:\/\/craftcookcode.com\/?cat=17","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=862#listItem","name":"The Fake LEFT OUTER JOIN"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=862#listItem","position":4,"name":"The Fake LEFT OUTER JOIN","previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=17#listItem","name":"SQL"}}]},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/#person","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=862#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/?author=1#author","url":"https:\/\/craftcookcode.com\/?author=1","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=862#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"WebPage","@id":"https:\/\/craftcookcode.com\/?p=862#webpage","url":"https:\/\/craftcookcode.com\/?p=862","name":"The Fake LEFT OUTER JOIN - Craft Cook Code","description":"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/craftcookcode.com\/#website"},"breadcrumb":{"@id":"https:\/\/craftcookcode.com\/?p=862#breadcrumblist"},"author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"creator":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"datePublished":"2022-08-04T06:47:41+00:00","dateModified":"2024-07-10T05:05:46+00:00"},{"@type":"WebSite","@id":"https:\/\/craftcookcode.com\/#website","url":"https:\/\/craftcookcode.com\/","name":"Craft Cook Code","description":"c^3?","inLanguage":"en-US","publisher":{"@id":"https:\/\/craftcookcode.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Craft Cook Code - c^3?","og:type":"article","og:title":"The Fake LEFT OUTER JOIN - Craft Cook Code","og:description":"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL","og:url":"https:\/\/craftcookcode.com\/?p=862","article:published_time":"2022-08-04T06:47:41+00:00","article:modified_time":"2024-07-10T05:05:46+00:00","twitter:card":"summary_large_image","twitter:title":"The Fake LEFT OUTER JOIN - Craft Cook Code","twitter:description":"In my role I review a wide variety of SQL code. Some is highly professional that is above my skill level so I absorb as much learning as I can from it. On the other side is self taught SQLers from the business world who are trying to build weird and wonderful reports with SQL"},"aioseo_meta_data":{"post_id":"862","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[],"defaultGraph":"Article","defaultPostTypeGraph":""},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-08-04 06:15:53","updated":"2025-06-04 12:26:50","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=13\" title=\"Code\">Code<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=17\" title=\"SQL\">SQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tThe Fake LEFT OUTER JOIN\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/craftcookcode.com"},{"label":"Code","link":"https:\/\/craftcookcode.com\/?cat=13"},{"label":"SQL","link":"https:\/\/craftcookcode.com\/?cat=17"},{"label":"The Fake LEFT OUTER JOIN","link":"https:\/\/craftcookcode.com\/?p=862"}],"_links":{"self":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/862","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=862"}],"version-history":[{"count":6,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/862\/revisions"}],"predecessor-version":[{"id":1462,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/862\/revisions\/1462"}],"wp:attachment":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=862"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=862"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=862"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}