Can not get FulfillmentOrders

When querying order details, if the order status is paid but not shipped, I cannot obtain fulfillmentOrders information.

In order to create fulfillment information, I need to first obtain the FulfillmentOrderId.

{
  "order": {
    "id": "gid://shopify/Order/5583905423444",
    "name": "#1019",
    "createdAt": "2025-08-23T09:06:17Z",
    "updatedAt": "2025-08-23T09:06:18Z",
    "note": null,
    "totalPriceSet": {
      "shopMoney": {
        "amount": "19.88",
        "currencyCode": "USD"
      }
    },
    "customer": {
      "id": "gid://shopify/Customer/7987241123924",
      "phone": "+16786000130"
    },
    "clientIp": "119.237.255.186",
    "currencyCode": "USD",
    "customerLocale": "en",
    "billingAddress": {
      "id": "gid://shopify/MailingAddress/14665773940820?model_name=Address",
      "name": "Cindy Ruiz",
      "company": null,
      "phone": "+16786000130",
      "country": "United States",
      "province": "Georgia",
      "provinceCode": "GA",
      "city": "Marietta",
      "address1": "221 Merritt St SE",
      "address2": null,
      "formattedArea": "Marietta GA, United States",
      "zip": "30060"
    },
    "shippingAddress": {
      "id": "gid://shopify/MailingAddress/14665773908052?model_name=Address",
      "name": "Cindy Ruiz",
      "company": null,
      "phone": "+16786000130",
      "country": "United States",
      "province": "Georgia",
      "provinceCode": "GA",
      "city": "Marietta",
      "address1": "221 Merritt St SE",
      "address2": null,
      "formattedArea": "Marietta GA, United States",
      "zip": "30060"
    },
    "displayAddress": {
      "id": "gid://shopify/MailingAddress/14665773908052?model_name=Address",
      "name": "Cindy Ruiz",
      "company": null,
      "phone": "+16786000130",
      "country": "United States",
      "province": "Georgia",
      "provinceCode": "GA",
      "city": "Marietta",
      "address1": "221 Merritt St SE",
      "address2": null,
      "formattedArea": "Marietta GA, United States",
      "zip": "30060"
    },
    "displayFulfillmentStatus": "UNFULFILLED",
    "lineItems": {
      "edges": [
        {
          "node": {
            "id": "gid://shopify/LineItem/13794159919188",
            "title": "120Pcs Seed Pod Kit Hydroponic Garden Growing Containers Grow Anything Kit with 30Pcs Baskets 30Pcs Lids 30Pcs Sponged 30Pcs Stickers",
            "quantity": 1,
            "variant": {
              "id": "gid://shopify/ProductVariant/42024745435220",
              "title": "White / One Size",
              "sku": "SKM103017722",
              "price": "19.32"
            },
            "product": {
              "id": "gid://shopify/Product/7669502115924",
              "handle": "120pcs-seed-pod-kit-hydroponic-garden-growing-containers-grow-anything-kit-with-30pcs-baskets-30pcs-lids-30pcs-sponged-30pcs-stickers-3"
            }
          }
        }
      ]
    },
    "fulfillments": [],
    "fulfillmentOrders": {
      "edges": []
    },
    "refunds": []
  }
}

Thanks for help!

Perhaps share a little more info, the full query you’re using, which version of the Admin API?