This is an IBM Automation portal for Digital Business Automation products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Cloud Pak for Business Automation - including Business Automation Studio and App Designer, Business Automation Insights
Business Automation Workflow (BAW) - including BAW, Business Process Manager, Workstream Services, Business Performance Center, Advanced Case Management
Content Services - FileNet Content Manager
Content Services - Content Manager OnDemand
Content Services - Daeja Virtual Viewer
Content Services - Navigator
Content Services - Content Collector for Email, Sharepoint, Files
Content Services - Content Collector for SAP
Content Services - Enterprise Records
Content Services - Content Manager (CM8)
Datacap
Automation Document Processing
Automation Decision Services (ADS)
Operational Decision Manager
Robotic Process Automation
Robotic Process Automation with Automation Anywhere
Blueworks Live
Business Automation Manager Open Edition
IBM Process Mining
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
See this idea on ideas.ibm.com
GraphQL API inner join query not returning all properties
GraphQL Parity with Java API Problem Description
Doing more complex SQL like a simple inner join query via the GraphQL API does not return information for properties that exist in the class to the right of the inner join. This functionality works in the Java APIs The query works but the properties in the list are being returned only for the first class identified in the inner join.
Example PSUEDO json
{
documents(
repositoryIdentifier: "OS2"
from: " TestFileClass c INNER JOIN TestBoxClass b ON c.BoxNumber=b.BoxNumber"
where: " (c.TestFileNumber ='11GRE32') AND (b.Category ='ROOM12') AND (b.Facility ='74388')"
pageSize: 20
) {
documents {
id
name
properties(
includes: ["TestFileNumber", "RequestorAlias", "ItemStatus", "ReviewName", "ShippingTrackingNumber", "RequestedDate", "CheckOutDate", "NotInStorage", "PreviousLocation", "BoxNumber", "RetentionID", "State", "MultipleLocations", "Facility", "Location", "Category"]
) {
id
label
value
}
}
pageInfo {
token
}
}
}
The properties up to “State” will return information as they are on the TestFileClass. The remaining 5 properties are in the TestBoxClass table and are ignored in the output. We have tried prefixing these with c. and b.. That causes all properties to be left out of the output. The pseudo sql that we used currently in the Java APIs is below. It does allow property values to be returned from both classes. (Not the following PSuedo SQL works fine in ACCE, NAV and in the original Java API's. Partially works in GraphQL. We need functional parity.
SELECT c.Id, c.TestFileNumber, c.RequestorAlias, c.ItemStatus, c.ReviewName, c.ShippingTrackingNumber, c.RequestedDate, c.CheckOutDate, c.NotInStorage, c.PreviousLocation, c.BoxNumber, c.RetentionID, b.State, b.MultipleLocations, b.Facility, b.Location, b.Category FROM TestFileClass c INNER JOIN TestBoxClass b ON c.BoxNumber=b.BoxNumber WHERE (c.TestFileNumber ='test') AND (b.Category =‘test’) AND (b.Facility =’test’)
Idea priority | Urgent |
By clicking the "Post Comment" or "Submit Idea" button, you are agreeing to the IBM Ideas Portal Terms of Use.
Do not place IBM confidential, company confidential, or personal information into any field.
Had to recreate this as a public issue. Would be nice to be able to toggle this from internal to external from the Web site...